import type { ExportedTemplate, ResourceSelector } from "@intentius/chant/lexicon"; /** * Map a live CloudFormation template body to full-fidelity export IR. * * `aws cloudformation get-template` returns the template body as a JSON object * (for JSON templates) or a string (for YAML). `CFParser` already turns either * into `TemplateIR` — the same IR the import path uses — so the result feeds * `templateGenerator()` (CFGenerator) unchanged. Pure: all I/O stays in the * caller. */ export declare function parseStackTemplate(templateBody: unknown, selector?: ResourceSelector, owned?: boolean): ExportedTemplate; //# sourceMappingURL=live-export.d.ts.map