import { CSSProperties, HTMLAttributes, Ref } from 'react';
import { ComponentColor, IComponentBaseProps } from '../types';
export declare const RADIAL_PROGRESS = "radial-progress";
export type RadialProgressColor = Exclude;
export declare const COLOR_MAP: Record;
export declare const BG_COLOR_MAP: Record;
export declare const RADIAL_PROGRESS_MAP: {
success: string;
info: string;
warning: string;
error: string;
primary: string;
secondary: string;
accent: string;
neutral: string;
};
export interface RadialProgressProps extends Omit, "color">, IComponentBaseProps {
ref?: Ref;
value: number;
size?: string;
thickness?: string;
color?: RadialProgressColor;
filled?: RadialProgressColor;
bordered?: boolean;
style?: CSSProperties;
}