import { Struct } from "../utilities/index.js";
import { Vector3 } from "../../utilities/vector.js";
export declare class OSMain extends Struct {
    constructor(options?: Partial<OSMain>);
    AngVel: Vector3;
    Heading: number;
    Pitch: number;
    Roll: number;
    Accel: Vector3;
    Vel: Vector3;
    Pos: Vector3;
}
