import * as React from 'react'; import * as Types from './types'; export declare const TRUE_TEXT = "TRUE"; export declare const FALSE_TEXT = "FALSE"; /** The default Spreadsheet DataViewer component */ declare const DataViewer: , Value>({ cell, evaluatedCell, active, }: Types.DataViewerProps) => React.ReactElement; export default DataViewer; export declare function convertBooleanToText(value: boolean): string;