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<AttributeInfo>;
    /**
     * 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<TabStop>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
