import { Range } from 'vscode-languageserver-types'; /** * Heredoc represents a here-document that has been embedded in a * Dockerfile. * * This API is experimental and subject to change. */ export declare class Heredoc { private readonly startRange; private readonly name; private readonly nameRange; private readonly contentRange; private readonly endRange; constructor(startRange: Range, name: string, nameRange: Range, contentRange: Range, endRange: Range); /** * Returns the name of the here-document. * * This API is experimental and subject to change. */ getName(): string; /** * Returns the range of the start operator and the name. If the * here-document is initialized with <