///
interface IProps {
inChatMode: boolean;
inMobile: boolean;
answerStopped?: boolean;
answering?: boolean;
needLigon?: boolean;
isRecording: boolean;
startRecord(): void;
stopRecord(): void;
}
declare function Mic(props: IProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent;
export default _default;