UNPKG

antd-mobile

Version:
11 lines (10 loc) 246 B
import type { FC } from 'react'; interface Props { type: 'checkbox' | 'radio'; checked: boolean; onChange: (checked: boolean) => void; disabled?: boolean; id?: string; } export declare const NativeInput: FC<Props>; export {};