import React from "react"; type RadioInputProps = React.InputHTMLAttributes & { children?: never; standalone?: boolean; /** * Reduces pseudo-element target-size. */ compact?: boolean; }; declare const RadioInput: React.ForwardRefExoticComponent & { children?: never; standalone?: boolean; /** * Reduces pseudo-element target-size. */ compact?: boolean; } & React.RefAttributes>; export { RadioInput }; export type { RadioInputProps };