import type { Command } from "commander"; import type { SingleResult } from "../../output/index.js"; import { type ChatCommandOptions } from "./shared.js"; import { type ChatMessageRow } from "./schema.js"; export interface ChatPostOptions extends ChatCommandOptions { replyTo?: string; } export declare function runPostCommand(room: string, body: string, options: ChatPostOptions, _command: Command): Promise>; //# sourceMappingURL=post.d.ts.map