interface ChartPieOriginInterface {
    height: number;
    padding: any;
    width: number;
}
/**
 * Returns the origin for pie based charts. For example, something with a radius such as pie, donut, donut utilization,
 * and donut threshold.
 *
 * @private Not intended as public API and subject to change
 */
export declare const getPieOrigin: ({ height, padding, width }: ChartPieOriginInterface) => {
    x: number;
    y: number;
};
export {};
//# sourceMappingURL=chart-origin.d.ts.map