/** * 状态 disabled * dom wrapper input indicator desc * 事件 onClick(模拟点击) 点击wrapper */ import React from 'react'; import { ObjectType } from '../../common/type'; import { BaseCheckProps } from './use-check.type'; declare const useCheck: (props: BaseCheckProps) => { getIndicatorProps: (externalProps?: TOther) => TOther & { tabIndex: number; }; getInputProps: (externalProps?: TOther_1) => TOther_1 & { onClick: (e: React.MouseEvent) => void; onChange: (event: React.ChangeEvent) => void; tabIndex: number; style: { display: string; }; checked: boolean | undefined; defaultChecked: boolean | undefined; ref: ((instance: HTMLInputElement | null) => void) | null; disabled: boolean | undefined; }; getRootProps: (externalProps?: TOther_2) => Omit & { onClick: (event: React.MouseEvent) => void; }; disabled: boolean | undefined; checked: boolean; }; export default useCheck; //# sourceMappingURL=use-check.d.ts.map