import { JSX } from 'preact/jsx-runtime'; interface IconProps { color?: string; size?: string; } export declare const MutedMicrophoneIcon: ({ size, color }: IconProps) => JSX.Element; export declare const MicrophoneIcon: ({ size, color }: IconProps) => JSX.Element; interface IProps { isController?: boolean; setPermissionHelper: (value: boolean) => void; testId?: string; } export declare function MicrophoneButton({ isController, setPermissionHelper, testId }: IProps): JSX.Element; export {};