/** * Props interface for ThemeToggle component */ interface Props { /** Size variant of the toggle button */ size?: 'sm' | 'md' | 'lg'; /** Whether to show the theme label text */ showLabel?: boolean; /** Custom class name for styling */ class?: string; } declare const ThemeToggle: import("svelte").Component; type ThemeToggle = ReturnType; export default ThemeToggle;