import { FC } from 'react'; type BarProps = { percentComplete: number; animated?: boolean; color?: string; style?: BarStyles; testID?: string; variant?: 'default' | 'flat'; }; declare const Bar: FC; declare const defaultStyles: (theme: import("../../../BrandConfigProvider").Theme) => readonly ["ChartBar", import("../../../BrandConfigProvider/styles/createStyles").NamedStyles<{ containerFlat: { borderWidth: number; height: number; backgroundColor: string; }; containerDefault: { borderRadius: number; borderWidth: number; backgroundColor: string; }; barDefaultView: { borderRadius: number; height: number; }; barFlatView: { height: number; }; }>]; declare module './../../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type BarStyles = NamedStylesProp; export default Bar;