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