import { Node, NodeEntry } from 'slate'; export interface IsNodeMatchOptions { filter?: (entry: NodeEntry) => boolean; /** * List of types that are valid. * If empty or undefined - allow all. */ includeTypes?: string[]; /** * List of types that are invalid. */ excludeTypes?: string[]; } export declare function isNodeMatch(entry: NodeEntry, { filter, includeTypes, excludeTypes }?: IsNodeMatchOptions): boolean;