import * as React from 'react' import { Errors, StoreSchemaType } from '@ui-schema/ui-schema/CommonTypings' import Map from 'immutable' export interface ValidityHelperTextProps { showValidity: boolean errors?: Errors schema: StoreSchemaType } export interface LocaleHelperTextProps { text: string schema: StoreSchemaType context?: Map className?: string } export function ValidityHelperText

(props: P): React.ReactElement

export function LocaleHelperText

(props: P): React.ReactElement