import type { CreateRegexMatcher } from '.'; import type { SlateTextNode, SlateElementNode } from './slate'; export declare const isTextNode: (node: unknown) => node is SlateTextNode; export declare const isElementNode: (node: unknown) => node is SlateElementNode; export declare const createMatcherDefault: CreateRegexMatcher;