/** * `slowcook preview teardown --pr ` — 0.16.0-α.5. * * Removes the running container + cleans up the staging directory for * a given PR. Idempotent — running it twice is fine. Updates the PR * comment to reflect the teardown. * * Triggered by the slowcook-preview-teardown.yml workflow on * `pull_request: closed`. Safe to also run manually via * workflow_dispatch when a stale container needs purging. */ interface ParsedArgs { pr: number | undefined; repoRoot: string; keyPath: string | undefined; owner: string | undefined; repo: string | undefined; /** Also remove the docker image (frees disk on the box). Default: keep image for fast redeploy. */ pruneImage: boolean; dryRun: boolean; } export declare function parseTeardownArgs(argv: string[]): ParsedArgs; export declare function teardown(argv: string[], cliVersion: string): Promise; export {}; //# sourceMappingURL=teardown.d.ts.map