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