import { VariantProps } from 'class-variance-authority';
import * as React from "react";
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
/**
 * Checkbox component variants
 */
declare const checkboxVariants: (props?: ({
    variant?: "default" | "destructive" | "success" | null | undefined;
    size?: "default" | "sm" | "lg" | null | undefined;
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
/**
 * Checkbox component for row selection in data grid
 */
export interface CheckboxProps extends React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>, VariantProps<typeof checkboxVariants> {
    /** Indeterminate state for partial selection */
    indeterminate?: boolean;
}
declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLButtonElement>>;
export { Checkbox, checkboxVariants };
//# sourceMappingURL=checkbox.d.ts.map