import React from 'react'; import { showValidity, Errors, StoreSchemaType } from '@ui-schema/ui-schema/CommonTypings'; export interface ValidityHelperTextProps { showValidity: showValidity | undefined; errors?: Errors; schema: StoreSchemaType; browserError?: React.ReactNode | React.ReactElement; } export interface LocaleHelperTextProps { text: string; schema: StoreSchemaType; context?: any; error?: boolean; } export declare const LocaleHelperText: React.FC; export declare const ValidityHelperText: React.FC;