/** * Takes in custom size and stroke for circle color, default to primary color as fill, * need ...rest for layered styles on top */ type IProps = { size?: string; stroke?: string; strokeWidth?: number; duration?: string; [k: string]: any; }; export default function LoadingSpinner({ size, stroke, strokeWidth, ...rest }: IProps): import("react/jsx-runtime").JSX.Element; export {};