interface DeleteInfrastructureOptions { /** * Top-level entries directly under `infrastructure/` to preserve. Names * match against the basename of each entry (file or directory). When * empty (the default), the whole `infrastructure/` directory is deleted. */ keep?: string[]; } declare function main({ keep }?: DeleteInfrastructureOptions): Promise; export { main }; //# sourceMappingURL=delete-infrastructure-directory.d.ts.map