/// export interface Props { color?: "white" | "black"; size?: "small"; text?: string; className?: string; } declare const Loading: ({ color, size, text, className }: Props) => JSX.Element; export default Loading;