import React from 'react'; import { XLabelsPosition, YLabelsPosition } from "../Axis/index"; export declare type ZoomState = readonly [number, number]; export declare const defaultZoom: ZoomState; export declare const isDefaultZoom: (zoom: ZoomState) => boolean; export declare const getZoomScale: ([start, end]: ZoomState) => number; declare type Props = { isHorizontal: boolean; xLabelsPos?: XLabelsPosition; yLabelsPos?: YLabelsPosition; paddingX: number; paddingY: number; value: ZoomState; onChange: (newValue: ZoomState) => void; }; export declare const Zoom: React.FC; export {};