import { IScale } from "../types";
/**
 * Merge given domains
 *
 * @param domains collected from dataSeries on the chart
 * @param scale that owns the domains
 */
export declare function mergeDomains(domains: any[][], scale: IScale<any>): any[];
