import type { FC } from "react"; import type { ICaptcha } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент каптчи * @returns {ReactElement} */ declare const Captcha: FC; export type { ICaptcha, }; export { Captcha, };