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