import { RtfTableCell } from '../model/table/rtf-table-cell';
import { RtfTableRowController } from './rtf-table-row-controller';
import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed';
export declare class RtfTableCellController {
    readonly rowController: RtfTableRowController;
    currentCell: RtfTableCell;
    constructor(rowController: RtfTableRowController);
    startNewCell(): void;
    isCurrentCellNotComplete(): boolean;
    assignLastCellAsCurrent(): void;
    finishCell(): void;
    setCharacterInterval(interval: FixedInterval): void;
    private setParagraphIntervalToParentCell;
    private setIntervalCore;
    reset(): void;
}
