import type { Bookmark } from '@unchainedshop/core-bookmarks'; import type { Modules } from '../modules.ts'; export interface ToggleBookmarkParams { productId: string; userId: string; bookmarked: boolean; } export declare function toggleBookmarkService(this: Modules, params: ToggleBookmarkParams): Promise;