export declare type RadioGroupItem = { /** The name of the item. */ name: string; /** The description text for the item. */ description: string; }; export declare type RadioGroupProps = { /** The label of the radio group component. */ label: string; /** Items for the radio group panel. */ items?: RadioGroupItem[]; /** The handler for the 'selected' event. */ onSelected?: (item: RadioGroupItem) => void; }; /** Radio Groups give you the same functionality as native HTML radio inputs, without any of the styling. They're perfect for building out custom UIs for selectors. */ export declare const RadioGroup: ({ label, items, onSelected, }: RadioGroupProps) => JSX.Element;