import { CheckboxProps } from "@mantine/core"; import CheckboxGroup from "./RHFCheckboxGroup"; import { FieldValues, UseControllerProps } from "react-hook-form"; type Props = CheckboxProps & { name: UseControllerProps["name"]; rules?: UseControllerProps["rules"]; defaultValue?: UseControllerProps["defaultValue"]; }; declare function RHFCheckbox(props: Props): import("react/jsx-runtime").JSX.Element; declare namespace RHFCheckbox { var Group: typeof CheckboxGroup; } export default RHFCheckbox; export declare const createCheckboxField: () => (props: Props) => import("react/jsx-runtime").JSX.Element;