import type { FC } from "react"; import type { IChecker } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент чекбокса или радиобаттона * @returns {ReactElement} */ declare const Checker: FC; export type { IChecker }; export { Checker };