UNPKG

tdesign-react

Version:
15 lines (14 loc) 569 B
import React from 'react'; import type { StyledProps } from '../common'; import type { CheckboxGroupValue, TdCheckboxGroupProps } from './type'; export interface CheckboxGroupProps<T extends CheckboxGroupValue = CheckboxGroupValue> extends TdCheckboxGroupProps<T>, StyledProps { children?: React.ReactNode; } /** * 多选选项组,里面可以嵌套 <Checkbox /> */ declare const CheckboxGroup: { <T extends CheckboxGroupValue = CheckboxGroupValue>(props: CheckboxGroupProps<T>): React.JSX.Element; displayName: string; }; export default CheckboxGroup;