export declare const platforms: readonly ["GitHub", "GitLab", "BitBucket"]; export type Platform = (typeof platforms)[number]; export declare function generateFiles(provider: Platform, parentDir: string, dryRun: boolean): Promise; export declare function stageFile(filePath: string, parentDir: string, contents: string, dryRun: boolean): Promise<{ file: string; contents: string; }>; export declare function stageDir(filePath: string, parentDir: string, dryRun: boolean): Promise<{ dir: string; }>; //# sourceMappingURL=generate.d.ts.map