import { InputHTMLAttributes } from "react";
export type CheckboxProps = InputHTMLAttributes<HTMLInputElement> & {
    disabled?: boolean;
    error?: boolean;
    warning?: boolean;
    title?: string;
    InvalidText?: string;
    for?: string;
    orientation?: "horizontal" | "vertical";
    texthelp?: string;
    radio?: TypeRadioprops[];
    label?: string;
    name?: string;
    value?: string;
};
type TypeRadioprops = InputHTMLAttributes<HTMLInputElement> & {
    label?: string;
    name?: string;
    value?: string;
};
export declare const Radio: (props: CheckboxProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map