interface StorefrontI18n { country?: string; language?: string; } interface Storefront { i18n: StorefrontI18n; query: (query: string, options?: any) => Promise; getShopifyDomain?: () => string; CacheNone: () => any; } interface Session { get: (key: string) => Promise; } interface Context { storefront: Storefront; session: Session; } interface GetNostoDataParams { context: Context; cartId?: string; } export declare function getNostoData({ context: { storefront, session }, cartId, }: GetNostoDataParams): Promise<{ nostoProviderData: any; nostoSessionData: Promise; }>; export {};