import type { Client, ClientOptions } from "openapi-fetch"; import type { paths } from "./openapi/index.ts"; /** * Creates an `openapi-fetch` client using {@link createClient}. * * @example * const client = createBitbucketServerClient({ * baseUrl: "https://example.org/rest", * headers: { * Accept: "application/json", * Authorization: `Bearer ${BITBUCKET_SERVER_TOKEN}`, * }, * }) */ export declare const createBitbucketServerClient: (clientOptions?: ClientOptions) => Client; //# sourceMappingURL=client.d.ts.map