import React from 'react'; import { ErrorType } from "./Input"; export type RadioButtonProps = ErrorType & { id: string; value?: string; checked?: boolean; onChange: (e: any) => void; onBlur?: (e: any) => void; onFocus?: (e: any) => void; required?: boolean; label: string | React.ReactNode; className?: string; appendClassName?: string; style?: React.CSSProperties; }; export declare const RadioButton: ({ id, value, checked, onChange, onBlur, onFocus, required, label, className, appendClassName, error, errorClassName, style }: RadioButtonProps) => import('./react/jsx-runtime.js').JSX.Element;