import { RadioProps } from '../Radio/types'; interface RadioListItemProps extends RadioProps { label?: string; description?: string; errorMessage?: string; className?: string; RadioClassName?: string; } declare const RadioListItem: ({ name, value, label, description, checked, disabled, isError, errorMessage, className, RadioClassName, onChange, children, ...rest }: RadioListItemProps) => import("react/jsx-runtime").JSX.Element; export { RadioListItem };