@uiw/react-native
Version:
UIW for React Native
14 lines (13 loc) • 457 B
TypeScript
/// <reference types="react" />
import { KeyType } from '../types';
import { CheckBoxProps } from '../../CheckBox';
interface FormCheckBoxProps extends CheckBoxProps {
value?: KeyType[];
onChange?: (value: KeyType[] | boolean) => void;
options?: Array<{
label: string;
value: KeyType;
}>;
}
declare const FormCheckBox: ({ value, onChange, options, ...others }: FormCheckBoxProps) => JSX.Element;
export default FormCheckBox;