import React, { ReactElement } from 'react'; import { AlertTypes } from '../../../models'; interface Props { alert?: { message?: string; type: AlertTypes; }; checked?: boolean; disabled?: boolean; label?: React.ReactNode; id?: string; name?: string; onChange?: (name: string, value?: string, obj?: any, event?: (EventTarget & HTMLInputElement) | undefined) => void; rotulo?: { texto: string; subTexto?: string; }; value?: { label: string; fn?: () => void; [key: string]: any; }; } export declare const InputRadio: (props: Props) => ReactElement; export {}; //# sourceMappingURL=index.d.ts.map