import type { KlawConfig } from "../config/types.klaw.js"; import type { SandboxToolPolicy } from "./sandbox/types.js"; type SenderToolPolicyParams = { config?: KlawConfig; agentId?: string; messageProvider?: string | null; senderId?: string | null; senderName?: string | null; senderUsername?: string | null; senderE164?: string | null; }; export declare function resolveSenderToolPolicy(params: SenderToolPolicyParams): SandboxToolPolicy | undefined; export {};