/** * Spinners are used to indicate users that their action is being processed. */ export declare class CatSpinner { /** * The size of the spinner. */ size: 'xs' | 's' | 'm' | 'l' | 'xl' | 'inline'; /** * Adds accessible label for the spinner that is only shown for screen * readers. The `aria-hidden` attribute will be set if no label is present. */ a11yLabel?: string; /** * Value of the progress bar. Defaults to zero. Mirrored to aria-valuenow. */ value: number; render(): any; }