export declare const progressCircleColorVariants: (props?: ({ variant?: "error" | "success" | "warning" | "theme" | "neutral" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const progressTextCircleContainerVariants: (props?: ({ size?: "m" | "s" | "l" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const progressTextCircleIndeterminateVariants: (props?: ({ size?: "m" | "s" | "l" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const progressTextCircleVariants: (props?: ({ size?: "m" | "s" | "l" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const progressSecondTextCircleVariants: (props?: ({ size?: "m" | "s" | "l" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type ProgressCircleVariant = 'theme' | 'success' | 'warning' | 'error' | 'neutral'; export type ProgressCircleProps = { dataTestId?: string; size: 's' | 'm' | 'l'; progress: number; label?: string; showPercentage?: boolean; type?: 'determinate' | 'indeterminate'; variant?: ProgressCircleVariant; }; //# sourceMappingURL=types.d.ts.map