UNPKG

infinity-forge

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