import { DeepPartial } from ".."; import { ComponentProps } from "solid-js"; export interface CheckboxTheme { base: string; } export interface CheckboxProps extends Omit, "type"> { theme?: DeepPartial; } export declare const Checkbox: (p: CheckboxProps) => import("solid-js").JSX.Element;