import React from 'react'; import { ThemeComponentInterface, AppearanceBaseTypes } from '@redesign-system/theme'; export interface CheckboxInterface extends ThemeComponentInterface { appearance?: AppearanceBaseTypes; checked?: boolean; disabled?: boolean; id: string; label: string; name?: string; onBlur?: (e: React.SyntheticEvent) => void; onChange?: (e: React.SyntheticEvent) => void; onFocus?: (e: React.SyntheticEvent) => void; }