UNPKG

@meshify/form-elements

Version:
10 lines (9 loc) 280 B
/// <reference types="react" /> interface IRadioButtonProps { itemValue: any; form: any; fieldName: string; selectedValueId: number | null; } declare const SingleSelectRadioButton: (props: IRadioButtonProps) => JSX.Element; export default SingleSelectRadioButton;