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