export declare class SingletonMixin {
    private static instance;
    static getInstance<T>(): T;
}
