import { InputHTMLAttributes } from "react";
interface Props {
/**
* Color of the checkbox
* @default "primary"
*/
color: "primary" | "neutral" | "error" | "warning" | "success";
/**
* Whether the checkbox is indeterminate
* @default false
*/
indeterminate: boolean;
}
export declare function Checkbox({ color, className, children, ...props }: InputHTMLAttributes & Partial): import("react/jsx-runtime").JSX.Element;
export {};