import { type CSSProperties } from 'react'; export interface SSwitchProps { /** on/off 상태 */ value?: boolean; /** 스위치 좌측 라벨 */ leftLabel?: string; /** 스위치 우측 라벨 */ rightLabel?: string; /** @deprecated `rightLabel` 사용. 우측 라벨(하위호환) */ label?: string; /** 비활성 */ disabled?: boolean; /** 변경 (sdUpdate) */ onValueChange?: (value: boolean) => void; className?: string; style?: CSSProperties; } /** SSwitch — sd-switch 포팅 (Radix SSwitch). 32×20 트랙, 16 노브. 좌/우 라벨 지원. */ export declare function SSwitch({ value, leftLabel, rightLabel, label, disabled, onValueChange, className, style, }: SSwitchProps): import("react").JSX.Element;