import React from 'react'; import type { Nullable } from '../typings/Types.js'; import type { RenderErrorMessage, ValidationBehaviour, ValidationLevel, ValidationWrapperInternalProps } from './ValidationWrapperInternal.js'; export interface ValidationInfo { type?: Nullable; level?: Nullable; message: React.ReactNode; independent?: boolean; } export interface ValidationWrapperProps extends Pick { children?: React.ReactElement; validationInfo: Nullable; renderMessage?: Nullable; } export declare class ValidationWrapper extends React.Component { static __KONTUR_REACT_UI__: string; static displayName: string; render(): React.JSX.Element; }