import { Symlinks } from './filesystem'; export type ZipArchives = { [name: string]: { deployed?: boolean; description?: string; gitOrigin?: { repoUrl: string; branch: string; include: { glob: string | string[]; ignore?: string | string[]; replacePrefix?: { [path: string]: string; }; }[]; }; symlinks?: Symlinks; docs?: { [name: string]: string; }; }; }; export declare const zipArchives: ZipArchives; export declare const deployedArchiveNames: string[]; //# sourceMappingURL=zip-archives.d.ts.map