export declare enum AxisLocationEnum { TOP = 1, RIGHT = 2, BOTTOM = 3, LEFT = 4, } /** * Get AxisLocationEnum that matches provided axisLocation string * @param axisLocation */ export declare function getAxisLocationEnum(axisLocation: string): AxisLocationEnum; export declare enum AxisTypeEnum { LINEAR = 1, ORDINAL = 2, } export declare function getAxisSelector(locationEnum: AxisLocationEnum): string; export declare function axisLayouter(locationEnum: AxisLocationEnum, layoutScale: any, dataModel: any): any;