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