type CheckboxInputProps = { value?: boolean; onChange: (value: boolean) => void; onShiftChange?: () => void; disabled?: boolean; error?: boolean; description?: string; size?: 'regular' | 'small'; label?: string; errorMessage?: string; }; declare const CheckboxInput: ({ value, onChange, onShiftChange, disabled, error, description, size, label, errorMessage, }: CheckboxInputProps) => import("react/jsx-runtime").JSX.Element; export type { CheckboxInputProps }; export { CheckboxInput };