import type { InputHTMLAttributes, Ref } from "react"; export interface CheckboxProps extends Omit, "type" | "placeholder"> { /** Label text. */ children?: React.ReactNode; /** Forwarded ref to the underlying `` element. */ ref?: Ref; } /** Native checkbox with a built-in label; for independent binary choices. */ export declare function Checkbox({ children, className, disabled, ref, ...rest }: CheckboxProps): import("react").JSX.Element; //# sourceMappingURL=Checkbox.d.ts.map