import type { AutoSlashCommandHookInput, AutoSlashCommandHookOutput } from "./types"; export * from "./detector"; export * from "./executor"; export * from "./constants"; export * from "./types"; export declare function createAutoSlashCommandHook(): { "chat.message": (input: AutoSlashCommandHookInput, output: AutoSlashCommandHookOutput) => Promise; };