botframework-webchat-component
Version:
React component of botframework-webchat
10 lines • 406 B
TypeScript
import { FC } from 'react';
declare function useMicrophoneButtonClick(): () => void;
declare function useMicrophoneButtonDisabled(): [boolean];
type MicrophoneButtonProps = {
className?: string;
};
declare const MicrophoneButton: FC<MicrophoneButtonProps>;
export default MicrophoneButton;
export { useMicrophoneButtonClick, useMicrophoneButtonDisabled };
//# sourceMappingURL=MicrophoneButton.d.ts.map