import { ValueOf } from '../index.js';
export declare const ShapeType: {
    readonly Line: "line";
    readonly Area: "area";
    readonly Bar: "bar";
    readonly Point: "point";
};
export declare type ShapeType = ValueOf<typeof ShapeType>;
export declare const SHAPE_TYPES: ("line" | "area" | "bar" | "point")[];
export declare const PolarShapeType: {
    Pie: string;
    Gauge: string;
};
export declare type PolarShapeType = ValueOf<typeof PolarShapeType>;
export declare const POLAR_SHAPE_TYPES: string[];
