import { FC, PropsWithChildren } from 'react';
import { BrushConfiguration } from './Brush';

export interface ChartBrushProps extends BrushConfiguration, PropsWithChildren {
    scale: any;
    height: number;
    width: number;
    children: any;
}
export declare const ChartBrush: FC<Partial<ChartBrushProps>>;
