import React from 'react'; import { SelectedRadioValue } from './types'; export interface RadioBlockProps extends React.ComponentPropsWithoutRef<'input'> { /** Whether the radio block is selected */ checked?: boolean; /** The always visible label of the radio block */ label: React.ReactNode; /** Additional class names applied to the label element */ labelClass?: string; /** The name of the radio button set */ name: string; /** The selected value of the radio button set */ selectedValue?: SelectedRadioValue; /** Whether children are always visible */ showChildren?: boolean; /** The value of the radio block */ value: string; } export declare const RadioBlock: React.ForwardRefExoticComponent>;