import type { ComponentProps } from "react"; import { CheckboxContent, CheckboxControl, CheckboxIndicator, CheckboxRoot } from "./checkbox"; export declare const Checkbox: (({ children, className, variant, ...props }: import("./checkbox").CheckboxRootProps) => import("react/jsx-runtime").JSX.Element) & { Root: ({ children, className, variant, ...props }: import("./checkbox").CheckboxRootProps) => import("react/jsx-runtime").JSX.Element; Control: ({ children, className, ...props }: import("./checkbox").CheckboxControlProps & Omit>) => import("react/jsx-runtime").JSX.Element; Indicator: ({ children, className, ...props }: import("./checkbox").CheckboxIndicatorProps & Omit>) => import("react/jsx-runtime").JSX.Element; Content: ({ children, className, ...props }: import("./checkbox").CheckboxContentProps & Omit>) => import("react/jsx-runtime").JSX.Element; }; export type Checkbox = { Props: ComponentProps; RootProps: ComponentProps; ControlProps: ComponentProps; IndicatorProps: ComponentProps; ContentProps: ComponentProps; }; export { CheckboxContent, CheckboxControl, CheckboxIndicator, CheckboxRoot }; export type { CheckboxRootProps, CheckboxRootProps as CheckboxProps, CheckboxControlProps, CheckboxIndicatorProps, CheckboxContentProps, } from "./checkbox"; export { checkboxVariants } from "@heroui/styles"; export type { CheckboxVariants } from "@heroui/styles";