import type { SVGProps } from 'react'; declare const SIZE_CLASS_NAMES: { readonly xs: "h-3 w-3"; readonly sm: "h-3.5 w-3.5"; readonly md: "h-4 w-4"; readonly lg: "h-5 w-5"; readonly xl: "h-8 w-8"; }; interface StableSpinnerProps extends Omit, 'children'> { size?: keyof typeof SIZE_CLASS_NAMES; title?: string; } export declare function StableSpinner({ size, title, className, ...props }: StableSpinnerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=StableSpinner.d.ts.map