/** * v0.8.1 — `solosquad archive verify|info|list` CLIs. * * Per docs/plan/v0.8.1-security-lifecycle-pair.md §5. These commands work * on archives produced by v0.7+ `solosquad uninstall`. They share the * yauzl-based reader with `solosquad import`. */ export interface ArchiveVerifyOpts { json?: boolean; } export declare function archiveVerifyCommand(archiveArg: string | undefined, opts: ArchiveVerifyOpts): Promise; export declare function archiveInfoCommand(archiveArg: string | undefined): Promise; export interface ArchiveListOpts { class?: string; } export declare function archiveListCommand(archiveArg: string | undefined, opts: ArchiveListOpts): Promise;