import { InputHTMLAttributes } from "react";
import "@fontsource/ibm-plex-sans";
export type CheckboxProps = InputHTMLAttributes & {
label?: string;
disabled?: boolean;
checked?: boolean;
error?: boolean;
warning?: boolean;
title?: string;
indeterminate?: boolean;
InvalidText?: string;
readOnly?: boolean;
};
export declare const Checkbox: (props: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map