import { ComponentPropsWithoutRef } from "react"; import { FieldGroupContextValue } from "../FieldGroup"; export interface RadioProps extends ComponentPropsWithoutRef<"input">, FieldGroupContextValue { /** * ルートにある要素に対するrefを指定します。 */ rootRef?: React.Ref; /** * 実体である`input`要素に対するrefを指定します。 */ inputRef?: React.Ref; /** * ラベルを指定します。これを指定しない場合、ルート要素は`span`要素になります。 */ label?: string; /** * ラベルは、`label` propで指定してください。 */ children?: never; } export declare const Radio: ({ inputRef, rootRef, label, style, className, onClick: propsOnClick, loading: propsLoading, readOnly: propsReadOnly, disabled, required, ...props }: RadioProps) => import("@emotion/react/jsx-runtime").JSX.Element;