import React, { CSSProperties, EventHandler } from 'react'; import { WidgetProps, WithScalarValue } from '@ui-schema/ui-schema'; import { InputBaseComponentProps } from '@mui/material/InputBase'; import { MuiWidgetBinding } from '@ui-schema/ds-material/widgetsBinding'; export interface StringRendererCellProps { type?: string; multiline?: boolean; rows?: number; rowsMax?: number; style?: CSSProperties; onClick?: EventHandler; onFocus?: EventHandler; onBlur?: EventHandler; onKeyUp?: EventHandler; onKeyDown?: EventHandler; onKeyPress?: EventHandler; inputProps?: Partial; inputRef?: null | React.RefObject; labelledBy?: string; } export declare const StringRendererCell: React.ComponentType & WithScalarValue & StringRendererCellProps>; export declare const TextRendererCell: React.ComponentType & WithScalarValue & StringRendererCellProps>; export declare const NumberRendererCell: React.ComponentType & WithScalarValue & StringRendererCellProps>;