import { FC, SVGAttributes } from 'react'; export interface BarsProps extends SVGAttributes { xDomainKey: string; yDomainKey: string; } export declare const Bars: FC;