import type { Bookmark } from '@unchainedshop/core-bookmarks'; import type { Modules } from '../modules.ts'; export interface CreateBookmarkParams { productId: string; userId: string; meta?: any; } export declare function createBookmarkService(this: Modules, params: CreateBookmarkParams): Promise;