import type { FC } from "react"; import type { Message, Role } from "../types/messages"; import { Colors } from "../types/parametrization"; import { Locations } from ".."; type MessageWithSource = Extract; type RepliedMessageId = string | { replyMetaId: string; }; type Props = Pick & Pick & { role?: Role; colors?: Colors; index: number; status?: string; reason?: string; location?: Locations; originalMessage?: Message; repliedMessageId?: RepliedMessageId; repliedMessagePreview?: string; onReplyMessageClick?: (message: Message & { colors?: Colors; }) => void; }; export declare const AdminMessage: FC; export {};