declare const _default: FavoriteService; export default _default; /** * Service class that provides methods to interact with a user's list of favorite items. */ declare class FavoriteService { getFavorites(filter: any): Promise; changeSingleFavorite(item: any): Promise; createFavorite(item: any): Promise; deleteFavoris(item: any): Promise; } //# sourceMappingURL=FavoriteService.d.ts.map