import { KeepSizes } from "../../Keep/KeepTheme"; import type { ComponentProps } from "react"; export interface keepCheckBoxTheme { base: string; radioInput: string; sizes: CheckboxInputSizes; withCheckIcon: { on: { base: string; sizes: CheckboxInputSizes; }; off: { base: string; sizes: CheckboxInputSizes; }; }; } export interface CheckboxInputSizes extends Pick { [key: string]: string; } export interface CheckboxProps extends Omit, "type" | "ref"> { sizing?: keyof CheckboxInputSizes; checkedIcon?: boolean; } export declare const Checkbox: import("react").ForwardRefExoticComponent>;