/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Slack Message object */ export interface SlackMessage { /** Message text content */ text: string; /** Reactions to this message */ reactions?: Klavis.SlackReaction[]; /** Thread replies to this message */ replies?: Klavis.SlackMessage[]; }