/** * SP6 — standalone `wigolo verify` command. * * Runs the end-to-end capability smoke check and prints a machine-readable * result. Exit code 0 when all capabilities pass (skipped counts as pass); * exit code 1 on any hard failure. * * Flags: * --plain / -y force plain (non-TUI) output * --help / -h print usage */ interface VerifyFlags { plain: boolean; help: boolean; json: boolean; } export declare function parseVerifyFlags(args: string[]): VerifyFlags; export declare function runVerifyE2E(args: string[]): Promise; export {}; //# sourceMappingURL=verify.d.ts.map