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