import { createConfigStore, getThemeStore } from "../../../kernel/src/mod.js"; import type { Theme } from "../../../kernel/src/mod.js"; export type { Theme }; /** * Resolver to get the display name of a theme in the current locale */ export declare const getThemeName: (option: Theme) => string; export declare const themeStore: import("../../../mod.ts").ConfigStore< Theme, "name" >; export type ThemeStore = ReturnType>; export { getThemeStore };