import * as React from "react"; export declare type RadioInputProps = { id: string; automationId?: string; selectedStatus?: boolean; onChange?: (event: React.ChangeEvent) => any; disabled?: boolean; name: string; value: string; }; declare type RadioInput = React.FunctionComponent; declare const RadioInput: RadioInput; export default RadioInput;