import type { Source } from "./source.ts"; export interface BitbucketSourceOptions { timeout?: number; } export declare class BitbucketSource implements Source { readonly displayName = "Bitbucket"; protected readonly network: string; protected readonly timeout: number; constructor(network: string, options?: BitbucketSourceOptions); getPublicKeyJwk(keyId: string): Promise; getTnlJwt(version?: number): Promise; protected url(path: string): string; } //# sourceMappingURL=bitbucket-source.d.ts.map