import { FC } from "react";
interface MicrophoneIconProps {
    color?: string;
    stroke?: number;
    className?: string;
}
declare const MicrophoneIcon: FC<MicrophoneIconProps>;
export default MicrophoneIcon;
