import { StringDictionary } from '../util/StringDictionary';
import { Cell } from './Cell';
import { View } from './View';
export declare class PrintMarkup extends View {
    readonly cancelButtonText: string;
    readonly commitButtonText: string;
    readonly editable: boolean;
    readonly focusPropName: string;
    readonly printMarkupXML: string;
    readonly rows: Cell[][];
    private _orderedCellValue;
    readonly orderedCellValues: StringDictionary;
}
