import type { FC } from "react"; import type { IForm, IFormRef, IFormCfg } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент формы * @returns {ReactElement} */ declare const Form: FC; export type { IForm, IFormCfg, IFormRef }; export { Form };