import { WorksheetCellFormatData } from "igniteui-react-excel"; import { IGFormattedTextDocument } from "./IGFormattedTextDocument"; import { Type } from "igniteui-react-core"; /** * @hidden */ export interface ISpreadsheetEditorValue { createDocument(): IGFormattedTextDocument; readonly unformattedText: string; readonly editCellFormat: WorksheetCellFormatData; } /** * @hidden */ export declare let ISpreadsheetEditorValue_$type: Type;