declare enum EStyle { dark = "dark", light = "light", industrial = "industrial" } declare const currentTheme: { style: "dark" | "light" | "industrial"; setTheme: (value: any) => void; }; declare const initStyle: { install: (app: any, ...rest: any[]) => void; }; export { initStyle, currentTheme, EStyle };