UNPKG

@intersect.mbo/govtool-delegation-pillar

Version:
5 lines (4 loc) 349 B
import { CheckboxFieldProps } from '../field'; import { ControlledFieldProps } from './types'; export type ControlledCheckboxProps = ControlledFieldProps & Omit<CheckboxFieldProps, 'onChange' | 'value'>; export declare const Checkbox: ({ control, name, errors, rules, ...props }: ControlledCheckboxProps) => import("react/jsx-runtime").JSX.Element;