import { CheckboxProps as AntCheckboxProps } from 'antd'; import { TYPE, STATE } from '../../constants'; export type GenesisCheckboxType = keyof typeof TYPE; export interface CheckboxProps extends AntCheckboxProps { state?: keyof typeof STATE; label?: string; } declare const Checkbox: ({ state, label, ...rest }: CheckboxProps) => import("react/jsx-runtime").JSX.Element; export default Checkbox;