import * as React from 'react'; import type { CommonPropsType } from '../../types'; import type { DataType } from '../../../configs/components/wd-checkbox'; export declare const WdCheckbox: ({ index, option, name, size, disabled, checkedItemValue, getChangeHandler, isAll, }: WdCheckboxProps) => JSX.Element; export interface WdCheckboxProps extends CommonPropsType, DataType { option?: object; index?: number; checkedItemValue?: string[] | object; getChangeHandler?: (e: React.MouseEvent, val: any) => any; disabled?: boolean; isAll?: boolean; }