import { JSX } from 'solid-js'; export interface VideoSelectButtonProps { isEnabled: boolean; onClick?: () => void; onSourceSelected?: (device: MediaDeviceInfo) => void; disableText?: string; enableText?: string; className?: string; popoverContainerClassName?: string; popoverTriggerBtnClassName?: string; popoverTriggerBtnSeparatorClassName?: string; } export declare const VideoSelectButton: (props: VideoSelectButtonProps) => JSX.Element;