import { type ComponentPropsWithoutRef } from 'react'; export type SpinnerProps = { /** * Accessibile label */ 'aria-label'?: string; /** * Spinner size */ 'data-size'?: '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl'; } & ComponentPropsWithoutRef<'svg'> & ({ 'aria-label': string; } | { 'aria-label'?: string; 'aria-hidden': true | 'true'; }); /** * Spinner component used for indicating busy or indeterminate loading. * * @example * */ export declare const Spinner: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=spinner.d.ts.map