import { UserInstance } from "../instance/UserInstance";
export interface InstanceStorage {
    set: (instance: UserInstance) => void;
    remove: () => void;
    get: () => UserInstance | undefined;
}
