import type { OpenClawConfig } from "../config/types.openclaw.js"; import { GatewayClient, type GatewayClientOptions } from "./client.js"; export declare function createOperatorApprovalsGatewayClient(params: Pick & { config: OpenClawConfig; gatewayUrl?: string; }): Promise; export declare function withOperatorApprovalsGatewayClient(params: { config: OpenClawConfig; gatewayUrl?: string; clientDisplayName: string; }, run: (client: GatewayClient) => Promise): Promise;