UNPKG

@appbuckets/react-ui-forms

Version:

An utilities package to manage and create Form using AppBuckets ReactUI

14 lines (13 loc) 467 B
import { CheckboxProps } from '@appbuckets/react-ui/Checkbox'; import type { HookedFieldProps } from '../utils/createHookedField.types'; declare type HookedCheckboxValueType = boolean; export declare type HookedCheckboxProps = HookedFieldProps< CheckboxProps, HookedCheckboxValueType >; declare const HookedCheckbox: import('../utils/createHookedField.types').HookedFieldComponent< CheckboxProps, HTMLInputElement, boolean >; export default HookedCheckbox;