import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { Position } from './position';
export declare const importsMapTableCellInsert: {
    Position: typeof Position;
};
/**
 * DTO container with a table cell.
 */
export declare class TableCellInsert implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the position of the table cell that will be used to determine the placement of a new cell.
     */
    existingCellPosition: Position;
    /**
     * Gets or sets the 0-based index, the table cell will be inserted after.
     */
    insertAfter: number;
    constructor(init?: Partial<TableCellInsert>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
