import { PrismEditor } from '../..'; /** * Extension that overrides the browser's default cursor. * * Due to a known issue, it's **not recommended** to use this extension with `wordWrap` * enabled. * * Use the `--pce-cursor` CSS variable to change the cursor's color and the `.pce-cursor` * selector for other styling. * * Requires the {@link useCursorPosition} extension and styling from * `prism-react-editor/cursor.css` to work. */ declare const useCustomCursor: (editor: PrismEditor) => void; export { useCustomCursor };