import type { AltMatcherOptions, Checkpoint, Matcher } from '../types'; import { AbstractMatcher } from './abstract-matcher'; export declare class AltMatcher extends AbstractMatcher { readonly alts: Matcher[]; private idx; private checkpoint; constructor({ matchers }: AltMatcherOptions); match(checkpoint: Checkpoint): Checkpoint | null; nextMatch(): Checkpoint | null; } //# sourceMappingURL=alt-matcher.d.ts.map