import type { AgentToolResult } from "@mariozechner/pi-agent-core"; import { type ChannelMessageActionAdapter } from "openclaw/plugin-sdk/channel-contract"; type SlackActionInvoke = (action: Record, cfg: unknown, toolContext: unknown) => Promise>; export declare function createSlackActions(providerId: string, options?: { invoke?: SlackActionInvoke; }): ChannelMessageActionAdapter; export {};