import type { Definition, GetReposResponse } from "./types"; export declare function getRepoId(orgName: string, repoName: string): string; export declare class DefinitionFile { private readonly path; constructor(path: string); getContents(): Promise; getDefinition(): Promise; } export declare function parseDefinition(value: string): Definition; export declare function getRepos(definition: Definition): GetReposResponse[]; export declare function getGitHubOrgs(definition: Definition): string[];