export declare enum Axis {
    x = "x",
    y = "y",
    z = "z"
}
export declare type Axises = 'x' | 'y' | 'z';
