/** * QA360 Verify Command - Proof Bundle Verification * * Verifies cryptographically signed proof bundles (RFC Proof Bundle v1) * * Usage: * qa360 verify * qa360 verify * qa360 verify --json * * @see docs/rfc/proof-bundle-v1.md */ /** * CLI options for verify command */ export interface VerifyOptions { json?: boolean; verbose?: boolean; strict?: boolean; } /** * Verify a single proof bundle file */ export declare function verifySingle(filePath: string, options?: VerifyOptions): Promise; /** * Verify all proof bundles in a directory */ export declare function verifyDirectory(dirPath: string, options?: VerifyOptions): Promise; /** * Main verify command */ export declare function verifyCommand(pathArg?: string, options?: VerifyOptions): Promise;