UNPKG

react-restyle-components

Version:
11 lines (10 loc) 294 B
import React from 'react'; import '../../../../tc.css'; interface RadioProps { title: string; data: Array<any>; className?: string; onChange: (item: any) => void; } export declare const Radio: ({ title, data, className, onChange, }: RadioProps) => React.JSX.Element; export {};