import { LexicalEditor } from 'lexical';
export interface IKeyboardPlugin {
    onSave?: (editor: LexicalEditor) => void;
    isDataChanged?: boolean;
    hasAttachments?: boolean;
}
export declare const KeyboardPlugin: (props: IKeyboardPlugin) => null;
