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