import React from 'react'; import { CheckListProps, CheckListItemProps } from 'antd-mobile/lib/components/check-list'; import { IListItemProps } from '../list'; export interface ICheckListOption { label: string; value: string; disabled?: boolean; } interface Props { options?: string[] | ICheckListOption[]; layout?: 'vertical' | 'horizontal'; layoutBlock?: boolean; } export interface ICheckListProps extends Props, CheckListProps { } export interface ICheckListItemProps extends Props, CheckListItemProps, IListItemProps { } declare type ComposedCheckList = React.FC & { Item?: React.FC; __ANTD_MOBILE_CHECKLIST?: boolean; }; export declare const BaseCheckList: React.FC; export declare const CheckList: ComposedCheckList; export default CheckList;