import { Node, Editor } from 'slate'; import Options from '../options'; declare type Normalizer = (editor: Editor) => any; /** * Create a schema definition with rules to normalize lists */ declare function normalizeNode(opts: Options): (node: Node) => void | Normalizer; export default normalizeNode; //# sourceMappingURL=normalizeNode.d.ts.map