import * as React from "react"; import { type TicketNote } from "./ticket-note-card"; export interface TicketNotesSectionProps { notes: TicketNote[]; onAddNote?: (text: string) => void; onEditNote?: (id: string, text: string) => void; onDeleteNote?: (id: string) => void; /** Disables the input and send button while a note is being added */ isAddingNote?: boolean; className?: string; } export declare function TicketNotesSection({ notes, onAddNote, onEditNote, onDeleteNote, isAddingNote, className, }: TicketNotesSectionProps): React.JSX.Element; //# sourceMappingURL=ticket-notes-section.d.ts.map