import type { FC } from 'react'; import { ListItemProps } from '../list'; import { NativeProps } from '../../utils/native-props'; import { CheckListValue } from '.'; export declare type CheckListItemProps = Pick & { value: CheckListValue; readOnly?: boolean; } & NativeProps; export declare const CheckListItem: FC;