import type { SchemaOf } from '../../helpers'; export interface IConfig { welcomeMessage: string; guidanceMessage?: string; logoUrl: string; welcomeButtonText?: string; thinkingVideoUrl: string; multipleLogoUrls?: string[]; sleepPrimaryMessage: string; sleepSecondaryMessage: string; backgroundImageUrl?: string; backgroundColor: string; hasClock: boolean; clockTextColor: string; hasDeliveryCarousel: boolean; primaryLightColor: string; primaryDarkColor: string; secondaryColor: string; primaryTextColor: string; secondaryTextColor: string; welcomeButtonTextColor: string; hasBrandingText: boolean; brandingTextColor: string; bellColor: string; hideLogos: boolean; customCssUrl?: string; } export declare const schemaMap: SchemaOf; export declare const schemaMapDefault: import("../../helpers").StrictSchemaMap; export declare const defaultConfig: IConfig;