import { AuthContext } from "@harvestr-api/common"; export declare const GITLAB_CLOUD_API_URL = "gitlab.com"; export declare function getGitlabToken(ctx: AuthContext): Promise<{ token: string | undefined; host_url: string | undefined; } | undefined>; export declare function getGitlabBearer(ctx: AuthContext, gotTokenAlready?: string, gotHostUrlAlready?: string): Promise<{ auth: { bearer: string; }; host_url: string; }>;