import { ColorModelInfo } from '../../../../../../model/color/color-model-info';
import { ShadingPattern } from '../../../../../../model/shadings/shading-pattern';
import { TableCell } from '../../../../../../model/tables/main-structures/table-cell';
import { TableCellProperties } from '../../../../../../model/tables/properties/table-cell-properties';
import { TableCellMergingState } from '../../../../../../model/tables/secondary-structures/table-base-structures';
import { TableWidthUnit } from '../../../../../../model/tables/secondary-structures/table-units';
export declare class RtfTableCellProperties {
    coreProperties: TableCellProperties;
    right: number;
    horizontalMerging: TableCellMergingState;
    shadingPattern: ShadingPattern;
    foreColor: ColorModelInfo;
    backColor: ColorModelInfo;
    verticalMerging: TableCellMergingState;
    preferredWidth: TableWidthUnit;
    constructor();
    copyFrom(obj: RtfTableCellProperties): void;
    apply(cell: TableCell): void;
}
