import { AttributeInfo } from '../internal/attributeInfo'; import { TabStopBase } from './tabStopBase'; export declare const importsMapTabStop: { TabStopBase: typeof TabStopBase; }; /** * DTO container with paragraph format tab stop. */ export declare class TabStop extends TabStopBase { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets a value indicating whether this tab stop clears any existing tab stops in this position. */ isClear: boolean; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }