import React, { FC } from 'react'; import { Note as NoteType } from './Note.types'; declare type MentionableUser = { key: string; value: string; email: string; }; declare type NoteMentionsProps = { children?: React.ReactNode; className?: string; dateFormat?: string; showTimezone?: boolean; mentionableUsers: MentionableUser[] | undefined; note: NoteType; onCancel?: (note: NoteType) => void; onChange?: (ev: React.ChangeEvent, note: NoteType) => void; onDelete?: (note: Omit) => void; onEdit?: (note: Omit) => void; onSave?: (note: NoteType) => void; onUndelete?: (note: NoteType) => void; rows?: number; saving?: boolean; saveLabel?: React.ReactNode; savingLabel?: React.ReactNode; headerColor?: string; }; declare const NoteMentions: FC; export default NoteMentions;