import { BaseUIComponent, DataModelProperties, ComponentExample, ComponentDescriptor, UIModel, AttributesMap, OptionValue } from '@ngx-dynamic-components/core'; export declare class RadioGroupUIComponent extends BaseUIComponent { get orientation(): "row" | "column"; get options(): OptionValue[]; } export declare class RadioGroupProperties extends DataModelProperties { label: string; itemsSource: string | OptionValue[]; onChange?: string; optionStyles?: AttributesMap; orientation?: string; } export declare const example: ComponentExample>; interface RadioGroupUIComponentConstrutor { new (): RadioGroupUIComponent; } interface RadioGroupPropertiesConstrutor { new (): RadioGroupProperties; } export declare const radioGroupDescriptor: ComponentDescriptor; export {};