import { type CSSProperties } from 'react'; export interface SToggleProps { /** 선택(on/off) 상태 */ value?: boolean; /** 라벨 */ label?: string; /** 비활성 */ disabled?: boolean; /** 변경 (sdUpdate) */ onValueChange?: (value: boolean) => void; className?: string; style?: CSSProperties; } /** * SToggle — sd-toggle 포팅. 알약형 토글 버튼. * default(흰 배경/회색), hover(파란 채움), select(흰 배경/파란 테두리·글자), disabled. */ export declare function SToggle({ value, label, disabled, onValueChange, className, style, }: SToggleProps): import("react").JSX.Element;