import type { FC } from "react"; import type { ILabel } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент лейбла для поля ввода * @returns {ReactElement} */ declare const Label: FC; export type { ILabel }; export { Label };