import type { BotConfig } from "../../config/config.js"; import type { SessionEntry } from "../../config/sessions.js"; import type { ReplyPayload } from "../types.js"; import type { InlineDirectives } from "./directive-handling.parse.js"; export declare function maybeHandleQueueDirective(params: { directives: InlineDirectives; cfg: BotConfig; channel: string; sessionEntry?: SessionEntry; }): ReplyPayload | undefined;