import React from 'react'; /** @deprecated Use `data-table` instead. */ export interface TableTimestampCellProps { /** * The timestamp to display (can be a Date, ISO string, or formatted string) */ timestamp: string | Date; /** * The ID to display below the timestamp */ id: string; /** * Optional label for the ID (e.g., "Log ID", "Chat ID") * If not provided, just shows the ID */ idLabel?: string; /** * Optional additional CSS classes for the container */ className?: string; /** * Format the timestamp automatically if it's an ISO string or Date * @default true */ formatTimestamp?: boolean; } /** @deprecated Use `data-table` instead. */ export declare function TableTimestampCell({ timestamp, id, idLabel, className, formatTimestamp }: TableTimestampCellProps): React.JSX.Element; //# sourceMappingURL=table-timestamp-cell.d.ts.map