import { ChangeEventHandler } from 'react'; import { ThemeColorVariables } from '@dreipol/t3-react-theme'; export type CheckboxProps = { /** * Change handler */ onChange?: ChangeEventHandler; /** * Custom color */ color?: ThemeColorVariables; /** * Render as disabled state */ disabled?: boolean; /** * Label text */ label?: string; /** * Render state of checkbox */ checked?: boolean; /** * Name of input */ name?: string; /** * Custom class */ className?: string; }; export declare const Checkbox: (props: CheckboxProps & import("react").RefAttributes) => import("react").ReactElement> | null;