import * as React from 'react'; import type { HasComponent, HasRootRef } from '../../../types'; export interface FormItemTopLabelProps extends React.AllHTMLAttributes, HasRootRef, HasComponent { } /** * Отвечает за отрисовку заголовка поля. По умолчанию компонент представлен тегом `label`, если передано свойство `htmlFor`. * Можно переопределить через свойство `Component`. * * @since 6.1.0 * */ export declare const FormItemTopLabel: ({ children, Component: componentProp, htmlFor, ...restProps }: FormItemTopLabelProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FormItemTopLabel.d.ts.map