import { ComponentProps } from 'react'; export declare const barColorVariants: (props?: ({ variant?: "error" | "success" | "info" | "warning" | "alert" | "default" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const barVariants: (props?: ({ background?: "default" | "black" | null | undefined; size?: "m" | "s" | "l" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type ProgressBarProps = ComponentProps<'div'> & { dataTestId?: string; size: 's' | 'm' | 'l'; progress: number; label?: string; showPercentage?: boolean; isError?: boolean; extendedLabelStyles?: string; type?: 'determinate' | 'indeterminate'; background?: 'default' | 'black'; variant?: 'default' | 'error' | 'alert' | 'success' | 'info' | 'warning'; }; //# sourceMappingURL=types.d.ts.map