/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { InputHTMLAttributes, PropsWithChildren, ReactNode } from 'react';
export type RadioProps = {
    /** An icon to display instead of the default icon. */
    icon?: ReactNode;
    /** Whether the value fails a validation rule. */
    invalid?: boolean;
} & PropsWithChildren<Omit<InputHTMLAttributes<HTMLInputElement>, 'aria-invalid' | 'type'>>;
export declare const Radio: import("react").ForwardRefExoticComponent<{
    /** An icon to display instead of the default icon. */
    icon?: ReactNode;
    /** Whether the value fails a validation rule. */
    invalid?: boolean;
} & Omit<InputHTMLAttributes<HTMLInputElement>, "aria-invalid" | "type"> & {
    children?: ReactNode | undefined;
} & import("react").RefAttributes<HTMLInputElement>>;
