import { Base, Point, Type } from "./type";
/**
 * @hidden
 */
export declare class ArcCenterInfo extends Base {
    static $t: Type;
    c: Point;
    a: number;
    b: number;
}
