import { type CSSProperties } from 'react'; /** 라디오 값 타입 (sd-radio SRadioValue) */ export type SRadioValue = string | number | boolean; export interface SRadioProps { /** 이 라디오의 값 */ val: SRadioValue; /** 그룹의 현재 선택 값 */ value?: SRadioValue | null; /** 라벨 */ label?: string; /** 비활성 */ disabled?: boolean; /** native radio name (form-agnostic 그룹핑) */ name?: string; /** 선택 변경 (sdUpdate) — 선택된 val 전달 */ onValueChange?: (val: SRadioValue) => void; className?: string; style?: CSSProperties; } /** SRadio — sd-radio 포팅. value===val 이면 선택. 단독 또는 SRadioGroup 안에서 사용. */ export declare function SRadio({ val, value, label, disabled, name, onValueChange, className, style, }: SRadioProps): import("react").JSX.Element;