import { Type } from "igniteui-react-core";
/**
 * An enum representing the available types of domain charts.
 */
export declare enum DomainType {
    /**
     * Specifies category domain for Category Chart
     */
    Category = 0,
    /**
     * Specifies financial domain for Financial Chart
     */
    Financial = 1,
    /**
     * Specifies scatter domain for Scatter Charts
     */
    Scatter = 2,
    /**
     * Specifies shape domain for Shape Charts
     */
    Shape = 3,
    /**
     * Specifies pie domain for Pie charts
     */
    Pie = 4
}
/**
 * @hidden
 */
export declare let DomainType_$type: Type;
