import { Client as NotionClient } from '@notionhq/client'; import { UpdatePageParameters, UserObjectResponse } from '@notionhq/client/build/src/api-endpoints'; export declare class NotionMutate { notionClient: NotionClient; dbID: string; constructor(notionClient: NotionClient, dbID: string); update(params: UpdatePageParameters): Promise; moveToInProgress(pageId: string, beforeAssignee: UserObjectResponse[], person?: { personId: string; name: string; }): Promise; }