import React from 'react'; import { UseValidationProps, Validator } from '@interface-technologies/iti-react-core'; import { RadioOption, RadioInputValue } from './radioInputTypes'; export interface RadioButtonOptions { inline: boolean; } export interface RadioInputProps extends UseValidationProps { options: RadioOption[]; enabled?: boolean; buttonOptions?: Partial; } /** * Radio button input. It renders a group of radio buttons based on the `options` you * pass in. * * You can customize the style of both the container and the individual radio buttons * / labels. Use the devtools element inspector to see the class names you need to * target. */ export declare const RadioInput: React.NamedExoticComponent; declare function required(): Validator; export declare const RadioValidators: { required: typeof required; }; export {};