/** * Switch component - Toggle between on/off states with smooth animation. * * @example * ```svelte * * ``` * * @example With label * ```svelte * * ``` */ interface Props { /** * Whether the switch is checked/on */ checked?: boolean; /** * Whether the switch is disabled */ disabled?: boolean; /** * Optional class name */ class?: string; /** * All other input attributes */ [key: string]: any; } declare const Switch: import("svelte").Component; type Switch = ReturnType; export default Switch; //# sourceMappingURL=Switch.svelte.d.ts.map