import { Project, Revision } from '../types/project'; export declare const fetchNameFromRevision: (revision: Revision) => string; export declare const fetchFromRevision: (revision: Revision) => string; export declare const fetchFromRevisions: (revisions: Revision[]) => string[]; export declare const fetchMasterFromProject: (project: Project) => string;