export declare class TextDocument {
    readonly fileName: string;
    private readonly _text;
    constructor(text: string, fileName: string);
    getText(): string;
    isView(): boolean;
    isFragment(): boolean;
    isXML(): boolean;
    isJS(): boolean;
    isTS(): boolean;
}
