@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
12 lines (11 loc) • 372 B
TypeScript
/// <reference types="react" />
import { RadioProps } from "./radio";
import RadoGroup from "./radio-group";
export type { RadioProps } from "./radio";
export type { RadioGroupProps } from "./radio-group";
interface RadioInterface {
(props: RadioProps): JSX.Element;
Group: typeof RadoGroup;
}
declare const Radio: RadioInterface;
export default Radio;