/// declare type Props = { color?: string; size?: '1x' | '1.5x' | '2x' | '2.5x' | '3x' | '3.5x' | '4x'; }; declare function Loading({ color, size: layoutSize }: Props): JSX.Element; export default Loading;