import { type InputHTMLAttributes, type ReactNode } from "react";
export interface RadioButtonProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "size"> {
    children: ReactNode;
    variant?: "plain" | "bounding-box";
    title?: string;
    size?: "small" | "";
}
export declare const RadioButton: import("react").ForwardRefExoticComponent<RadioButtonProps & import("react").RefAttributes<HTMLInputElement>>;
//# sourceMappingURL=radio-button.d.ts.map