import { FC } from 'react'; type Props = { color: string; target: number; value: number; disabled?: boolean; strokeLinecap?: string; rotation?: number; styles?: RadialProgressStyles; }; export declare const RadialProgress: FC; declare const defaultStyles: (theme: import("../../BrandConfigProvider").Theme) => readonly ["TrackerRadialProgress", import("../../BrandConfigProvider/styles/createStyles").NamedStyles<{ container: { position: "relative"; backgroundColor: string; }; disabledBorder: { opacity: number; }; circle: { radius: number; rotation: number; strokeWidth: number; strokeLinecap: string; shadow: number; backgroundColor: string; opacity: number; stroke: string; }; animated: { strokeWidth: number; }; overflowContainer: { position: "absolute"; }; overflowShadow: { elevation: number; shadowOpacity: number; shadowColor: string; shadowOffset: { width: number; height: number; }; shadowRadius: number; }; }>]; declare module './../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type RadialProgressStyles = NamedStylesProp; export {};