UNPKG

443 BTypeScriptView Raw
1import type { FC } from 'react';
2import { ListItemProps } from '../list';
3import { NativeProps } from '../../utils/native-props';
4import { CheckListValue } from '.';
5export declare type CheckListItemProps = Pick<ListItemProps, 'title' | 'children' | 'description' | 'prefix' | 'disabled' | 'onClick' | 'style'> & {
6 value: CheckListValue;
7 readOnly?: boolean;
8} & NativeProps;
9export declare const CheckListItem: FC<CheckListItemProps>;