@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
14 lines (12 loc) • 427 B
TypeScript
import { default as React } from 'react';
import { FormSelectChoice } from '../../../lib/types/types';
interface InputRadioProps {
fieldId: string;
index: number;
option: FormSelectChoice<string, string>;
value: string;
onChange: Function;
disabled?: boolean;
}
export declare const InputRadio: ({ fieldId, index, option, value, onChange, disabled, }: InputRadioProps) => React.JSX.Element;
export {};