export declare class Match {
    startInOld: number;
    startInNew: number;
    size: number;
    constructor(startInOld: number, startInNew: number, size: number);
    get endInOld(): number;
    get endInNew(): number;
}
