export declare class Unit {
    private static instance;
    constructor();
    static get Instance(): Unit;
    toString(): string;
}
