import * as ts from "typescript";
/**
 * Represents a span of text.
 */
export declare class TextSpan {
    /** Gets the compiler text span. */
    readonly compilerObject: ts.TextSpan;
    /**
     * Gets the start.
     */
    getStart(): number;
    /**
     * Gets the start + length.
     */
    getEnd(): number;
    /**
     * Gets the length.
     */
    getLength(): number;
}
