export declare type ThemeType = "Editorial" | "Customer" | "Industrial"; export interface Theme { brandColor: string; logoUrl: string; fontFamily: FontFamilyPresetType; } export declare type FontFamilyPresetType = typeof ASSET_OPTIONS[number]; export declare const DEFAULT_THEME_NAME = "Customer"; export declare const DEFAULT_THEME: Theme; export declare const THEME_MAPPING: { [name in ThemeType]: Theme; }; export declare const ASSET_OPTIONS: readonly ["Montserrat", "Inter", "Roboto", "Martel", "Georgia", "Helvetica", "Space Grotesk", "IBM Plex Mono"];