import Vue from 'vue'; import { ThemeStore } from '../../../stores/Theme'; export default class ThemeSelect extends Vue { private readonly rootStore; themes: string[]; theme: string; themeStore: ThemeStore; created(): void; handleThemeChange(newVal: any): void; }