import type { Checkpoint, NumMatcherHandler, NumMatcherOptions, NumMatcherValue } from '../types'; import { AbstractMatcher } from './abstract-matcher'; export declare class NumMatcher extends AbstractMatcher { readonly num: NumMatcherValue; readonly handler: NumMatcherHandler; constructor({ value, handler }: NumMatcherOptions); match(checkpoint: Checkpoint): Checkpoint | null; } //# sourceMappingURL=num-matcher.d.ts.map