import { ComponentProps, FC } from 'react'; import { Colors, DeepPartial, MainSizes, RoundedSizesElastic } from '../../types/types'; import { ProgressTheme } from './theme'; export interface ProgressProps extends Omit, "color"> { progress?: number; size?: MainSizes; label?: string; theme?: DeepPartial; hasMotion?: boolean; color?: Colors; rounded?: keyof RoundedSizesElastic; barClassName?: string; } export declare const Progress: FC; //# sourceMappingURL=Progress.d.ts.map