import { type MutationHint } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Deletes only the actor-owned chatBookmarks row identified by the request and rejects bookmarks belonging to another user. * The synchronized removal makes a personal bookmark disappear across devices without exposing or modifying another member's saved state. */ export declare function chatBookmarkDelete(executor: DrizzleExecutor, input: { actorUserId: string; chatId: string; bookmarkId: string; }): Promise<{ hint: MutationHint; }>; //# sourceMappingURL=chatBookmarkDelete.d.ts.map