export declare type Cartesian = {
    x: number;
    y: number;
};
export declare type Polar = {
    radius: number;
    angle: number;
};
