import { default as React } from 'react'; type RadioOption = { value: string; label: string; subLabel?: string; disabled?: boolean; }; type RadioButtonsProps = Omit, 'type' | 'value' | 'onChange' | 'name' | 'id'> & { name: string; options: readonly RadioOption[]; value?: string; onChange: (e: React.ChangeEvent) => void; }; export declare const RadioButtons: ({ name, options, value, onChange, disabled: groupDisabled, ...props }: RadioButtonsProps) => import("react/jsx-runtime").JSX.Element; export {};