/** A document map node representing a node in the document map hierarchy. */
export declare class DocumentMapNode {
    /** Unique identifier for the document map node. */
    id: string;
    /** Indicates whether the node is expanded in the document map. */
    isExpanded: boolean;
    /** The label of the document map node. */
    label: string;
    /** The text content of the document map node. */
    text: string;
    /** The page number associated with the document map node. */
    page: number;
    /** An array of child document map nodes. */
    items: DocumentMapNode[];
}
