import { RangeDataType, BoxSeriesDataType } from "../../types/options"; import { TooltipDataValue } from "../../types/components/tooltip"; export declare function isRangeValue(value: unknown): value is RangeDataType; export declare function isRangeData(data?: BoxSeriesDataType[] | TooltipDataValue): boolean; export declare function isZooming(categories: string[], zoomRange?: RangeDataType): boolean; export declare function getDataInRange(data: T[], range?: RangeDataType): T[];