import '../../lib.css'; interface Props { /** * Prefix for the local storage variable * * **⚠️Important**: _This variable is not reactive, so you should not change it after the component is mounted._ * */ project: string; } declare const ThemeEditor: import("svelte").Component; type ThemeEditor = ReturnType; export default ThemeEditor;