type $$ComponentProps = { themes?: string[]; current?: string; onchange?: (value: string) => void; }; declare const ThemeSelector: import("svelte").Component< $$ComponentProps, {}, "current" >; type ThemeSelector = ReturnType; export default ThemeSelector;