import type { Checkpoint, OpMatcherHandler, OpMatcherOptions, OpMatcherValue } from '../types'; import { AbstractMatcher } from './abstract-matcher'; export declare class OpMatcher extends AbstractMatcher { readonly op: OpMatcherValue; readonly handler: OpMatcherHandler; constructor({ value, handler }: OpMatcherOptions); match(checkpoint: Checkpoint): Checkpoint | null; } //# sourceMappingURL=op-matcher.d.ts.map