UNPKG

@dapplets/dapplet-extension

Version:
9 lines (8 loc) 313 B
import { DetailedHTMLProps, FC, HTMLAttributes } from 'react'; export interface RadioButtonsProps extends DetailedHTMLProps<HTMLAttributes<HTMLInputElement>, HTMLInputElement> { name?: string; id?: string; value?: string; checked?: any; } export declare const RadioButtons: FC<RadioButtonsProps>;