import type { Checkpoint, SymMatcherHandler, SymMatcherOptions, SymMatcherValue } from '../types'; import { AbstractMatcher } from './abstract-matcher'; export declare class SymMatcher extends AbstractMatcher { readonly sym: SymMatcherValue; readonly handler: SymMatcherHandler; constructor({ value, handler }: SymMatcherOptions); match(checkpoint: Checkpoint): Checkpoint | null; } //# sourceMappingURL=sym-matcher.d.ts.map