import { PrismEditor } from '../../types'; /** * Hook that shows selected tabs and spaces in an editor. To instead highlight * all spaces and tabs, use {@link tokenizeInvisibles}. * * Requires styling from `prism-react-editor/invisibles.css`. */ declare const useShowInvisibles: (editor: PrismEditor) => void; export { useShowInvisibles };