/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { InputHTMLAttributes, PropsWithChildren } from 'react'; import type { IconProps } from '../Icon'; export type RadioProps = { /** * An icon to display instead of the default icon. * Websites for the City of Amsterdam must use the default icon. * @default RadioIcon */ readonly icon?: IconProps['svg']; /** Whether the value fails a validation rule. */ readonly invalid?: boolean; } & Readonly, 'aria-invalid' | 'type'>>>; /** * Allows users to select one option from a list. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-radio--docs Radio docs at Amsterdam Design System} */ export declare const Radio: import("react").ForwardRefExoticComponent<{ /** * An icon to display instead of the default icon. * Websites for the City of Amsterdam must use the default icon. * @default RadioIcon */ readonly icon?: IconProps["svg"]; /** Whether the value fails a validation rule. */ readonly invalid?: boolean; } & Readonly, "aria-invalid" | "type">>> & import("react").RefAttributes>;