import { Type } from "igniteui-react-core";
/**
 * An enum representing available sweep directions for the pie chart.
 */
export declare enum PieChartSweepDirection {
    /**
     * Let the component decide the sweep direction.
     */
    Auto = 0,
    /**
     * The pie slices are arranged in a clockwise order from the 0 angle.
     */
    Clockwise = 1,
    /**
     * The pie slices are arranged in a counterclockwise order from the 0 angle.
     */
    Counterclockwise = 2
}
/**
 * @hidden
 */
export declare let PieChartSweepDirection_$type: Type;
