/** * Deleted Data Card — generic TOMBSTONE placeholder for an entity a chat * action removed (ClickUp task today; any deletable entity tomorrow). * * Follows the established tombstone pattern (Teams / Slack "This message * was deleted"): keep a visible, muted placeholder so the conversation * thread's integrity holds — the reader sees WHAT was removed and that * it may be recoverable, instead of a dead link or a silent gap. * * PURE PRESENTATION from the ChatRef — no fetch, no navigation (the * underlying entity no longer resolves anywhere). Ref contract: * - `title` — the deleted entity's display title * - `metadata.entity_label` — what kind of thing it was ("ClickUp task") * - `metadata.recovery_note` — optional recoverability copy * ("Recoverable from the ClickUp Trash for 30 days") */ import React from 'react'; export interface DeletedDataCardProps { title?: string | null; /** What kind of entity was deleted ("ClickUp task", "HubSpot ticket"). */ entityLabel?: string | null; /** Recoverability copy ("Recoverable from the ClickUp Trash for 30 days"). */ recoveryNote?: string | null; className?: string; } export declare function DeletedDataCard({ title, entityLabel, recoveryNote, className }: DeletedDataCardProps): React.JSX.Element; //# sourceMappingURL=deleted-data-card.d.ts.map