/** * Dev Reset Command * * Deletes local config and secrets files so developers can re-test * the 0-to-deployed flow (bootstrap → fix → deploy) from scratch. * * Only touches LOCAL files — no AWS cleanup, no server cleanup. */ interface DevResetOptions { dryRun?: boolean; } export declare function devReset(options?: DevResetOptions): Promise; export default devReset; //# sourceMappingURL=dev-reset.d.ts.map