/**
 * Local verification command for XMCP-I CLI
 *
 * Implements Requirements 15.5, 15.6:
 * - Perform offline verification without KTA calls
 * - Validate signatures, proofs, and key relationships locally
 * - Return detailed validation results for debugging
 */
interface VerifyOptions {
    local?: boolean;
    json?: boolean;
    verbose?: boolean;
    proof?: string;
    request?: string;
    response?: string;
}
/**
 * Verify command implementation
 */
export declare function verify(options?: VerifyOptions): Promise<void>;
export {};
//# sourceMappingURL=verify.d.ts.map