import type { InputHTMLAttributes, Ref } from "react"; export interface CheckboxProps extends Omit, "type"> { /** Label text. */ children?: React.ReactNode; /** Forwarded ref to the underlying `` element. */ ref?: Ref; } export declare function Checkbox({ children, className, disabled, ref, ...rest }: CheckboxProps): import("react").JSX.Element; //# sourceMappingURL=Checkbox.d.ts.map