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) => import("react/jsx-runtime").JSX.Element;
    Indicator: ({ children, className, ...props }: import("./checkbox").CheckboxIndicatorProps) => import("react/jsx-runtime").JSX.Element;
    Content: ({ children, className, ...props }: import("./checkbox").CheckboxContentProps) => import("react/jsx-runtime").JSX.Element;
};
export type Checkbox = {
    Props: ComponentProps<typeof CheckboxRoot>;
    RootProps: ComponentProps<typeof CheckboxRoot>;
    ControlProps: ComponentProps<typeof CheckboxControl>;
    IndicatorProps: ComponentProps<typeof CheckboxIndicator>;
    ContentProps: ComponentProps<typeof CheckboxContent>;
};
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";
