import type { SliceTypeSteps } from '../slice'; import type { CharPredicate } from './types'; export declare const isLetter: CharPredicate; export declare const isWhitespace: CharPredicate; export declare const isPunctuation: CharPredicate; /** * Compares two block slice types, ignores tag discriminants. */ export declare const stepsEqual: (a: SliceTypeSteps, b: SliceTypeSteps) => boolean;