import type { GitlabClient } from "./client.js"; import { getFile } from "./repository.js"; import type { Project } from "./types.js"; export declare function getProject(client: GitlabClient, projectId: string | number): Promise; export declare function getReadmeFile(client: GitlabClient, projectId: string | number, filePath: string, ref: string): ReturnType;