import React from 'react'; import { View, StyleProp, ViewStyle } from 'react-native'; import type { CheckboxValueType, CheckboxOptionType } from './content'; export interface CheckboxGroupProps { /** * group 样式 */ style?: StyleProp; /** * 整组失效 */ disabled?: boolean; /** * 默认选中的选项 */ defaultValue?: Array; /** * 指定选中的选项 */ value?: Array; /** * 变化时回调函数 */ onChange?: (checkedValue: Array) => void; /** * 指定可选项 */ options?: Array; /** * 子元素 */ children?: React.ReactNode; /** * 排列方向 * @default vertical */ direction?: 'vertical' | 'horizontal'; } declare const _default: React.MemoExoticComponent>>; export default _default;