import React from 'react' import { WidgetProps } from '@ui-schema/ui-schema/Widget' export interface StringRendererProps extends WidgetProps { // contains the index of the current schema level multiline?: boolean type?: string rows?: number value: string } export interface NumberRendererProps extends WidgetProps { type: string value: number } export function StringRenderer

(props: P): React.ReactElement

export function NumberRenderer

(props: P): React.ReactElement

export function TextRenderer

(props: P): React.ReactElement