import { UserstateMessage } from "../message/twitch-types/userstate.mjs"; import { SingleConnection } from "../client/connection.mjs"; import { MessageError } from "../client/errors.mjs"; //#region src/operations/say.d.ts declare function removeCommands(message: string): string; declare class SayError extends MessageError { failedChannelName: string; messageText: string; action: boolean; constructor(failedChannelName: string, failedMessage: string, action: boolean, message: string, cause?: Error); } declare function say(conn: SingleConnection, channelName: string, messageText: string, replyToId?: string, action?: boolean): Promise; declare function me(conn: SingleConnection, channelName: string, message: string): Promise; declare function reply(conn: SingleConnection, channelName: string, messageID: string, message: string): Promise; //#endregion export { SayError, me, removeCommands, reply, say }; //# sourceMappingURL=say.d.mts.map