import { type CSSProperties } from 'react'; export type SRadioButtonSize = 'xs' | 'sm'; export interface SRadioButtonOption { value: string | number; label: string; disabled?: boolean; } export interface SRadioButtonProps { /** 옵션 목록 */ options?: SRadioButtonOption[]; /** 현재 선택 값 */ value?: string | number | null; /** 크기 */ size?: SRadioButtonSize; /** 전체 비활성 */ disabled?: boolean; /** input name 속성 */ name?: string; /** 변경 (sdUpdate) */ onValueChange?: (value: string | number) => void; className?: string; style?: CSSProperties; } /** * SRadioButton — sd-radio-button 포팅. 세그먼트형 라디오(버튼 그룹). * default(흰 배경/회색, hover 파란 채움) · select(흰 배경/파란 테두리·글자) · disabled. */ export declare function SRadioButton({ options, value, size, disabled, name, onValueChange, className, style, }: SRadioButtonProps): import("react").JSX.Element;