UNPKG

@aappddeevv/dynamics-client-ui

Version:

## What is it? A library to help you create great dynamics applications.

17 lines (16 loc) 504 B
/// <reference types="react" /> 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<any>; [pname: string]: any; }): JSX.Element; export default RadioSelect;