import { FormEvent, ReactElement, ReactNode } from 'react'; import { StyledProps } from '@harnessio/design-system'; import { RadioButtonProps } from './RadioButton'; export interface RadioButtonGroupProps extends StyledProps { className?: string; disabled?: boolean; inline?: boolean; label?: ReactNode; name?: string; asPills?: boolean; onChange: (e: FormEvent) => void; options: Array>; selectedValue?: string | number; } export declare function RadioButtonGroup({ className, disabled, inline, label, name, asPills, onChange, options, selectedValue, ...props }: RadioButtonGroupProps): ReactElement;