import { FunctionComponent } from 'react'; interface Props { size?: number; color?: string; className?: string; children?: JSX.Element; [props: string]: any; } declare const MinimizeIcon: FunctionComponent; export default MinimizeIcon;