export declare const IIModel: IModel;
export interface IModel {
    initialize(): Promise<void>;
    release(): void;
}
