import type { CheckboxProps as AriaProps } from 'react-aria-components'; export declare const checkboxVariants: (props?: ({ variant?: "select" | "default" | "box" | null | undefined; isDisabled?: boolean | null | undefined; isSelected?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export declare const boxVariants: (props?: ({ isSelected?: boolean | null | undefined; isInvalid?: boolean | null | undefined; isDisabled?: boolean | null | undefined; isHovered?: boolean | null | undefined; isPressed?: boolean | null | undefined; isSelect?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; type CheckboxVariantProps = { variant?: 'default' | 'box' | 'select'; isDisabled?: boolean; isSelected?: boolean; }; export type CheckboxProps = CheckboxVariantProps & AriaProps & { label?: string; }; export {}; //# sourceMappingURL=types.d.ts.map