import type { ComponentProps } from 'react'; import { DeepPartial } from '..'; export interface FlowbiteCheckboxTheme { base: string; } export interface CheckboxProps extends Omit, 'type' | 'ref'> { theme?: DeepPartial; } export declare const Checkbox: import("react").ForwardRefExoticComponent>;