import React from 'react'; declare type NotesDataSource = { note?: string; internalNotes?: Array> | string; onChange?: (value: any, type: 'edit' | 'add' | 'remove', noteType: string) => void; apis?: any; bookingId?: any; }; declare type BookingNotesPreviewProps = { dataSource?: NotesDataSource; labels?: { orderNote?: string; internalNote?: string; more?: string; }; style?: React.CSSProperties; }; declare const BookingNotesPreview: (props: BookingNotesPreviewProps) => React.JSX.Element | null; export default BookingNotesPreview;