import { RecommendedOptionsTranslations } from './types'; export declare const fetchOptions: (offerId?: string) => Promise; export declare const fetchStoryblokOptions: (optionCatalogPath: String, categories: Array, language: string) => Promise; export declare const getTranslation: (translations: RecommendedOptionsTranslations, key: string) => string; export declare const updateCartWithServiceOption: (cartId: string, payload: any) => Promise; export declare const createServiceOptionPayload: (option: any, itemType: string) => { cartItem: { itemType: string; items: { id: string; count: number; }[]; }[]; };