type SlackHandler = (args: unknown) => Promise; export declare const getSlackTestState: () => void; export declare const getSlackHandlers: () => Map | undefined; export declare const getSlackClient: () => Record | undefined; export declare const flush: () => Promise; export declare function waitForSlackEvent(name: string): Promise; export declare const defaultSlackTestConfig: () => { messages: { responsePrefix: string; ackReaction: string; ackReactionScope: string; }; channels: { slack: { dm: { enabled: boolean; policy: string; allowFrom: string[]; }; groupPolicy: string; }; }; }; export declare function resetSlackTestState(config?: Record): void; export {};