import { TableWidthUnit } from '../../../../model/tables/secondary-structures/table-units';
import { ImportedTableCellInfo } from '../containers/tables';
import { HtmlTagImporterBase } from './base';
export declare class HtmlTrTagImporter extends HtmlTagImporterBase {
    static tagName: string;
    cells: ImportedTableCellInfo[];
    gridBeforeInfo: {
        gridBefore: number;
        widthBefore: TableWidthUnit;
    };
    private rowElement;
    elementTag(): string;
    importBefore(): void;
    isImportChildren(): boolean;
    importAfter(): void;
    private static importGridBefore;
    private static importGridAfter;
}
