import { DeviceListItem } from '../../hooks';
export type DeviceAudioPreviewItemProps = {
    device: DeviceListItem;
    onSelect: (deviceId: string) => void;
};
export declare const DeviceAudioPreviewItem: ({ device, onSelect, }: DeviceAudioPreviewItemProps) => import("react/jsx-runtime").JSX.Element | null;
