import { type GreedyEncodeResult, type SequencePlannerState } from './sequencePlanner.js'; export interface FastMatcherOptions { history?: Uint8Array; repOffsets?: [number, number, number]; plannerState?: SequencePlannerState; } export declare function buildFastMatcherSequences(input: Uint8Array, options?: FastMatcherOptions): GreedyEncodeResult;