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