import type { Flow } from 'flow-to-typescript-codemod';
import * as COLORS from '../../styles/variables/_color';
type ClassNames = Readonly<{
    wrapper?: string;
}>;
export type ProgressDonutProps = {
    classNames?: ClassNames;
    color?: keyof typeof COLORS;
    percentage: number;
};
export declare const ProgressDonut: Flow.AbstractComponent<ProgressDonutProps, HTMLDivElement>;
export {};
//# sourceMappingURL=ProgressDonut.d.ts.map