import { type PropsWithChildren } from 'react'; export type HelperTextProps = { /** * Флаг состояния ошибки */ isError?: boolean; className?: string; } & PropsWithChildren; export declare const HelperText: ({ isError, children, className, }: HelperTextProps) => JSX.Element;