/// export declare function RadioBoxItem({value, label, ...rest}: { [x: string]: any; value: any; label: any; }): JSX.Element; /** Render items vertically using a flexbox . */ export declare function DefaultComponent({children, ...rest}: { [x: string]: any; children: any; }): JSX.Element; export declare function RadioSelect({options, Component, ...rest}: { options?: Array; [pname: string]: any; }): JSX.Element; export default RadioSelect;