import * as React from "react"; export interface TicketNote { id: string; text: string; authorName: string; authorAvatar?: string; createdAt: string; isOwn: boolean; } export interface TicketNoteCardProps { note: TicketNote; onEdit?: (id: string, text: string) => void; onDelete?: (id: string) => void; className?: string; } export declare function TicketNoteCard({ note, onEdit, onDelete, className }: TicketNoteCardProps): React.JSX.Element; //# sourceMappingURL=ticket-note-card.d.ts.map