import * as React from 'react';
export declare const NoteEditor: React.FunctionComponent<{
    note?: string | null;
    onNoteChange: (note: string) => void;
    onClose: () => void;
    editMode: boolean;
    isReadonly: boolean;
}>;
