import { BoxProps } from '../box';
import { LiteralUnion } from 'type-fest';
export declare enum SpinnerSizes {
    xs = "xs",
    sm = "sm",
    md = "md",
    lg = "lg",
    xl = "xl"
}
export declare type NamedSizeLiterals = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
export declare type SpinnerSize = LiteralUnion<NamedSizeLiterals, string>;
export interface SpinnerPropsBase {
    size?: SpinnerSize;
    emptyColor?: string;
    color?: string;
    thickness?: string;
    speed?: string;
    label?: string;
}
export declare type SpinnerProps = BoxProps & SpinnerPropsBase;
