import type { FC, ReactNode } from 'react'; import { NativeProps } from '../../utils/native-props.js'; import { ListProps } from '../list/index.js'; export type CheckListValue = string | number; export type CheckListProps = Pick & { defaultValue?: CheckListValue[]; value?: CheckListValue[]; onChange?: (val: CheckListValue[]) => void; multiple?: boolean; activeIcon?: ReactNode; extra?: (active: boolean) => ReactNode; disabled?: boolean; readOnly?: boolean; children?: ReactNode; } & NativeProps; export declare const CheckList: FC;