import { CreateOAuthClientOptions, OAuthClient } from "./types.js"; //#region src/oauth/client.d.ts /** * Create an {@link OAuthClient}. The factory does not perform any * network I/O until one of the methods on the returned client is * called. * * @stable */ declare function createOAuthClient(options: CreateOAuthClientOptions): OAuthClient; //#endregion export { createOAuthClient }; //# sourceMappingURL=client.d.ts.map