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<Props, {}, "">;
type ThemeEditor = ReturnType<typeof ThemeEditor>;
export default ThemeEditor;
