import { AttributeInfo } from '../internal/attributeInfo'; import { TabStopBase } from './tabStopBase'; export declare const importsMapTabStopInsert: { TabStopBase: typeof TabStopBase; }; /** * A DTO to Insert / replace a tab stop. */ export declare class TabStopInsert extends TabStopBase { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }