UNPKG

infinity-forge

Version:
11 lines (10 loc) 394 B
import React from 'react'; import { InputProps, Option } from '../interfaces.js'; export interface InputCheckboxProps { checkbox_key?: string; OptionComponent?: (props: Option & { isSelected: boolean; }) => React.ReactNode; onlyOneValue?: boolean; } export declare function InputCheckbox(props: InputCheckboxProps & InputProps): import("react/jsx-runtime").JSX.Element;