import { type EditorProps as DraftEditorProps, EditorState } from 'draft-js'; type UsePastedTextHandlerRes = Exclude; /** * Pastes only text if the current block is atomic. */ declare const usePastedTextHandler: (onChange: (value: EditorState) => void, handler: UsePastedTextHandlerRes) => UsePastedTextHandlerRes; export default usePastedTextHandler; //# sourceMappingURL=usePastedTextHandler.d.ts.map