interface Props {
    themes?: string[];
    theme?: string;
}
declare const ThemeController: import("svelte").Component<Props, {}, "theme">;
type ThemeController = ReturnType<typeof ThemeController>;
export default ThemeController;
