/**
 * @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.
     * @default RadioIcon
     */
    icon?: IconProps['svg'];
    /** Whether the value fails a validation rule. */
    invalid?: boolean;
} & PropsWithChildren<Omit<InputHTMLAttributes<HTMLInputElement>, 'aria-invalid' | 'type'>>;
/**
 * @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.
     * @default RadioIcon
     */
    icon?: IconProps["svg"];
    /** Whether the value fails a validation rule. */
    invalid?: boolean;
} & Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "aria-invalid"> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLInputElement>>;
