import { LayoutScale } from "./scale"; /** * Creates a layouter for mapping data to a scatter chart. * @param colorScaleKey - unique key to lookup the color scale. * @param areaScaleKey - unique key to lookup the area scale. * @param shapeScaleKey - unique key to lookup the shape scale. */ export declare function scatterLayoutCreator(colorScaleKey?: string, areaScaleKey?: string, shapeScaleKey?: string): (dataModel: any, layoutScale: LayoutScale) => () => any;