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<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the offset in the node.
     */
    offset: number;
    constructor(init?: Partial<PositionInsideNode>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
