import './FormTitle.css'; import type { ElementType } from 'react'; import type { FormElementSizeVariant } from '../../types/FormElementSizeVariant'; import { type PolymorphicComponentPropsWithoutRef } from '../../utils/polymorphicComponentWithRef'; export type FormTitleBaseProps = { /** Размер – влияет на размер шрифта и отступы заголовка */ size?: FormElementSizeVariant; }; export type FormTitleProps = PolymorphicComponentPropsWithoutRef; export declare const cnFormTitle: import("@bem-react/classname").ClassNameFormatter; export declare const FormTitle: import("../../utils/polymorphicComponentWithRef").PolymorphicComponentWithRef;