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