export interface ServiceOptionsPropConfigSchema { baseURL: string | ''; cartURL: string | ''; storyBlokURL: string | ''; } export declare class ServiceOptionsPropConfig { private static instance; config: ServiceOptionsPropConfigSchema; private constructor(); getConfig: () => ServiceOptionsPropConfigSchema; getBaseUrl: () => string; getCartUrl: () => string; getSBUrl: () => string; static getInstance: () => ServiceOptionsPropConfig; static create: (p_config: ServiceOptionsPropConfigSchema) => void; }