export interface LightDarkPairing { light: string; dark: string; label: string; } export declare const LIGHT_DARK_PAIRINGS: LightDarkPairing[]; export declare const SINGLE_SCHEMES: string[]; export declare const LIGHT_SCHEMES: string[]; export interface SupportedLang { value: string; label: string; } export declare const SUPPORTED_LANGS: SupportedLang[]; export interface ThemePackOption { slug: string; label: string; hint: string; } export declare const THEME_PACKS: ThemePackOption[]; export interface Feature { value: string; label: string; hint: string; default: boolean; cliFlag: string; } export declare const FEATURES: Feature[]; export declare const HEADER_RIGHT_LABELS: Record;