import type { WorkflowService } from "../../workflows/service.js"; import type { TalkControlExecution, TalkControlOperation, TalkControlVerification } from "./types.js"; interface VerificationHost { workflowService?: WorkflowService; } /** Every operation name with an authoritative re-read. A gateway operation * missing from here fails closed (`ok: false`), which is correct but silent — * the manifest suite asserts the pairing instead of waiting for it. */ export declare const VERIFY_HANDLER_NAMES: readonly string[]; export declare function verifyTalkDomainOperation(operation: TalkControlOperation, args: Record, execution: TalkControlExecution, host: VerificationHost): Promise; export {}; //# sourceMappingURL=verification.d.ts.map