import { FlexProps, IconProps } from '@chakra-ui/react'; interface SpinnerProps extends FlexProps { /** * The color of the spinner */ color?: string; /** * The speed of the spinner. * @example * ```jsx * * ``` */ speed?: string; /** * For accessibility, it is important to add a fallback loading text. * This text will be visible to screen readers. */ label?: string; /** * Font size of the spinner. */ fontSize?: IconProps['fontSize']; } export declare const Spinner: ({ speed, color, label, fontSize, ...flexProps }: SpinnerProps) => JSX.Element; export {};