import type { ChatMessage } from "../../types"; interface RecipientRemoveProps { createdAt: ChatMessage["timestamp"]; author: ChatMessage["author"]; target: ChatMessage["mentions"][0]; channelId: ChatMessage["channel_id"]; } declare function RecipientRemove(props: RecipientRemoveProps): import("react/jsx-runtime").JSX.Element; export default RecipientRemove; //# sourceMappingURL=RecipientRemove.d.ts.map