import React from 'react'; import { strokeLineCaps } from './shared-props'; import { BaseProps } from '../_utils/props'; export declare type BarBackgroundType = 'impulse' | 'striped'; export interface BarProps extends BaseProps { percent?: number; format?: (percent: number) => React.ReactNode; showInfo?: boolean; strokeLinecap?: strokeLineCaps; strokeColor?: string | string[]; strokeWidth?: number; innerText?: boolean; backgroundType?: BarBackgroundType; children?: React.ReactNode; } declare const Bar: (props: BarProps) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>; export default Bar;