import type { ConfigStore, SlotContext } from "rune-lab/core"; export interface Language { code: string; flag?: string; } export declare const getLanguageName: (l: Language) => string; export declare function createLanguageStore( ctx: SlotContext, ): ConfigStore;