/// type Props = { size?: number | string; color?: string; }; declare function ICP({ size, color }: Props): JSX.Element; declare namespace ICP { var DefaultColor: string; } export default ICP;