/** @packageDocumentation * @module iModelHubClient */ import { FileHandler } from "../FileHandler"; import { IModelClient } from "../IModelClient"; import { AuthorizedClientRequestContext } from "../AuthorizedClientRequestContext"; /** Class that allows access to different iModelHub class handlers. * Handlers should be accessed through an instance of this class, rather than constructed directly. * @internal */ export declare class IModelBankClient extends IModelClient { /** Creates an instance of IModelBankClient. * @param url Url to iModel Bank instance. */ constructor(url: string, handler: FileHandler | undefined); getUrl(rqctx: AuthorizedClientRequestContext): Promise; } //# sourceMappingURL=IModelBankClient.d.ts.map