///
interface IParam {
onSendMsg?: (value: string, files?: string[]) => void;
setInputValue: React.Dispatch>;
}
interface IRetrun {
startRecord(): void;
stopRecord(): void;
isRecording: boolean;
}
declare function useMic(param: IParam): IRetrun;
export default useMic;