import type { WebClient } from "@slack/web-api"; import { vi } from "vitest"; export type SlackEditTestClient = WebClient & { chat: { update: ReturnType; }; }; export type SlackSendTestClient = WebClient & { conversations: { open: ReturnType; }; chat: { postMessage: ReturnType; }; }; export declare function installSlackBlockTestMocks(): void; export declare function createSlackEditTestClient(): SlackEditTestClient; export declare function createSlackSendTestClient(): SlackSendTestClient;