/// import * as T from "./type"; export declare type BooleanInputProps = { setToggle: () => void; checked: boolean; } & Pick, "errors" | "disabled">; declare const InputBooleanGeneric: (UI: (props: BooleanInputProps) => JSX.Element) => ({ value, disabled, onChange, errors }: T.InputProps) => JSX.Element; export default InputBooleanGeneric;