interface MergeInfrastructureOptions { /** * Top-level subdirectories of `infrastructure/` to scope the merge to. * When omitted or empty, the entire `infrastructure/` tree is merged * (legacy behavior). Each name is relative to `infrastructure/` — * e.g. `['postgres', 'metabase']` merges only * `infrastructure/postgres/` and `infrastructure/metabase/`. */ subdirs?: string[]; } declare function main({ subdirs }?: MergeInfrastructureOptions): Promise; export { main }; //# sourceMappingURL=merge-infrastructure-directory.d.ts.map