export type DeviceSelectorAudioInputProps = {
    title?: string;
    visualType?: 'list' | 'dropdown' | 'preview';
    volumeIndicatorVisible?: boolean;
};
export declare const DeviceSelectorAudioInput: ({ title, visualType, volumeIndicatorVisible, }: DeviceSelectorAudioInputProps) => import("react/jsx-runtime").JSX.Element;
export type DeviceSelectorAudioOutputProps = {
    title?: string;
    visualType?: 'list' | 'dropdown';
    speakerTestVisible?: boolean;
    speakerTestAudioUrl?: string;
};
export declare const DeviceSelectorAudioOutput: ({ title, visualType, speakerTestVisible, speakerTestAudioUrl, }: DeviceSelectorAudioOutputProps) => import("react/jsx-runtime").JSX.Element | null;
