import { type ComponentPropsWithoutRef } from 'react'; export type CheckboxProps = { /** * The content of the checkbox label. * It should be only a string value. * * @default undefined */ label?: string; /** * Show indeterminate state of checkbox or not. * It should be only a boolean value. * * @default false */ indeterminate?: boolean; } & ComponentPropsWithoutRef<'input'>;