export interface ProductTeaserPropConfigSchema { baseURL: string | ""; cartURL: string | ""; } export declare class ProductTeaserPropConfig { private static instance; config: ProductTeaserPropConfigSchema; private constructor(); getConfig: () => ProductTeaserPropConfigSchema; getBaseUrl: () => string; getCartUrl: () => string; static getInstance: () => ProductTeaserPropConfig; static create: (p_config: ProductTeaserPropConfigSchema) => void; }