import type { Code, VueCodeInformation } from '../../types';
export declare class Boundary {
    private source;
    private endOffset;
    features: VueCodeInformation;
    private constructor();
    static start(source: string, start: number, end: number, features: VueCodeInformation): Generator<Code, Boundary>;
    end(): Code;
}
