import type React from "react"; import { type ReactNode } from "react"; import type { SpaceProps } from "styled-system"; import { type ComponentVariant } from "../NDSProvider/ComponentVariantContext"; type NativeInputProps = Omit, "size">; type RadioProps = NativeInputProps & SpaceProps & { htmlSize?: number; variant?: ComponentVariant; labelText?: ReactNode; checked?: boolean; defaultChecked?: boolean; error?: boolean; }; declare const Radio: React.ForwardRefExoticComponent & React.RefAttributes>; export default Radio;