import { ComponentPropsWithoutRef } from 'react'; export interface SwitchProps extends ComponentPropsWithoutRef<'input'> { className?: string; } /** * 토글 스위치 컴포넌트입니다. * * @component * @param {Object} props - 컴포넌트 props * @param {string} [props.className] - 추가적인 CSS 클래스 * @param {boolean} [props.checked] - 스위치의 체크 상태 * @param {boolean} [props.disabled] - 스위치의 비활성화 상태 * @extends {ComponentPropsWithoutRef<'input'>} - input 요소의 기본 props를 상속받습니다 * * @example * // 기본 사용법 * * * // 비활성화된 스위치 * * * // 커스텀 클래스 적용 * */ declare const Switch: ({ className, checked, disabled, ...rest }: SwitchProps) => import("react/jsx-runtime").JSX.Element; export { Switch };