import { Table } from '../../../../../../model/tables/main-structures/table';
import { TableProperties } from '../../../../../../model/tables/properties/table-properties';
import { TableLookTypes } from '../../../../../../model/tables/secondary-structures/table-base-structures';
import { TableWidthUnit } from '../../../../../../model/tables/secondary-structures/table-units';
export declare class RtfTableProperties {
    coreProperties: TableProperties;
    _halfSpace: number;
    useHalfSpace: boolean;
    rightToLeft: boolean;
    style: number;
    preferredWidth: TableWidthUnit;
    lookTypes: TableLookTypes;
    constructor();
    get halfSpace(): number;
    set halfSpace(value: number);
    isChanged(): boolean;
    copyFrom(obj: RtfTableProperties): void;
    apply(table: Table): void;
}
