import type { ComponentProps } from "react"; import type { DynamicStringEnumKeysOf, FlowbiteColors, ThemingProps } from "../../types"; export interface CheckboxTheme { base: string; color: FlowbiteColors; indeterminate: string; } export interface CheckboxProps extends Omit, "type" | "ref" | "color">, ThemingProps { color?: DynamicStringEnumKeysOf; indeterminate?: boolean; } export declare const Checkbox: import("react").ForwardRefExoticComponent>;