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