import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { Position } from './position';
export declare const importsMapTableInsert: {
    Position: typeof Position;
};
/**
 * DTO container with a table element.
 */
export declare class TableInsert implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the number of columns. The default value is 2.
     */
    columnsCount: number;
    /**
     * Gets or sets the position to insert the table. The table will be inserted using the specified position.
     */
    position: Position;
    /**
     * Gets or sets the number of rows. The default value is 2.
     */
    rowsCount: number;
    constructor(init?: Partial<TableInsert>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
