import { ReactNode } from "react"; declare type Props = { children: ReactNode; /** * Hide the spinner briefly in case the loading state is very short */ delayed?: boolean; fullScreen?: boolean; timeoutMs?: number; }; export declare function Spinner(props: Props): JSX.Element; export {};