import type { ComponentPropsWithRef, ElementType } from 'react'; export type RadioProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Interactive elements that allow users to select a single option from a list. * @docs {@link https://design.visa.com/components/radio/?code_library=react | See Docs} * @vgar TODO * @wcag TODO * @related radio-panel */ declare const Radio: { ({ className, tag: Tag, ...remainingProps }: RadioProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Radio;