react-box-tools
Version:
Box tools react components, utils and hooks
10 lines (6 loc) • 364 B
TypeScript
import { DetailedHTMLProps } from 'react';
import { InputHTMLAttributes } from 'react';
import { JSX } from 'react/jsx-runtime';
export declare const CheckBox: (props: CheckBoxProps) => JSX.Element;
export declare type CheckBoxProps = Omit<DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'placeholder' | 'type'>;
export { }