import type { CustomMessage } from "./messages.js"; export declare const BTW_COMMAND_NAME = "/btw"; export declare const BTW_COMMAND_USAGE = "Usage: /btw "; export declare const BTW_CUSTOM_TYPE = "btw"; export interface BtwNoteDetails { note: string; } export interface BtwCommandTarget { queueByTheWay(note: string): void; getPendingByTheWayNotes(): readonly string[]; } export declare function parseBtwCommand(text: string): string | undefined; export declare function createBtwNextTurnMessage(note: string): Pick, "customType" | "content" | "display" | "details">; export declare function getBtwNoteFromMessage(message: Pick, "customType" | "details">): string | undefined; export declare function runBtwCommand(target: BtwCommandTarget, note: string): string; //# sourceMappingURL=btw-command.d.ts.map