import type { KlawConfig } from "../config/types.klaw.js"; import type { ExecApprovalDecision } from "./exec-approvals.js"; type ResolveApprovalOverGatewayParams = { cfg: KlawConfig; approvalId: string; decision: ExecApprovalDecision; senderId?: string | null; allowPluginFallback?: boolean; resolveMethod?: "plugin"; gatewayUrl?: string; clientDisplayName?: string; }; export declare function resolveApprovalOverGateway(params: ResolveApprovalOverGatewayParams): Promise; export {};