export type LoaderVariant = 'spinner' | 'bar' | 'dots';
export type LoaderSize = 'sm' | 'md' | 'lg';
export type LoaderColor = 'accent' | 'primary' | 'secondary' | 'muted';
export interface LoaderProps {
    variant?: LoaderVariant;
    size?: LoaderSize;
    color?: LoaderColor;
    progress?: number;
    label?: string;
    inline?: boolean;
    class?: string;
}
//# sourceMappingURL=types.d.ts.map