import React from "react"; import { Label } from "../Label"; import { Error } from "../Error"; export interface Props { id?: string; classes?: string; legend?: string; legendClasses?: string; description?: string; borderless?: boolean; name: string; radios: RadioOptions; dontWrap?: boolean; legendIsQuestionTitle?: boolean; error?: React.ComponentProps; dataTestId: string; } export interface RadioOptions { radioList: { id: string; value?: string; classes?: string; checked?: boolean; disabled?: boolean; label: React.ComponentProps; onClick?: React.MouseEventHandler; onChange?: React.ChangeEventHandler; attributes?: { [key: string]: string; }; }[]; } export declare const Radios: (props: Props) => React.JSX.Element;