import { AttributeInfo } from '../internal/attributeInfo'; import { Position } from './position'; export declare const importsMapPositionInsideNode: { Position: typeof Position; }; /** * DTO container with a new position in the document tree. */ export declare class PositionInsideNode extends Position { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the offset in the node. */ offset: number; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }