import { TNode } from '../common';
export interface TdProgressProps {
    color?: string | Array<string> | Record<string, string>;
    label?: string | boolean | TNode;
    percentage?: number;
    size?: string | number;
    status?: StatusEnum;
    strokeWidth?: string | number;
    theme?: ThemeEnum;
    trackColor?: string;
}
export declare type StatusEnum = 'success' | 'error' | 'warning' | 'active';
export declare type ThemeEnum = 'line' | 'plump' | 'circle';
