import { Util } from "../../"; import { Map } from "./Map"; import { BlockRecord, CollectionRecord, SpaceRecord, NotionUserRecord, ActivityRecord, FollowRecord, SlackIntegrationRecord } from "./Record"; export declare namespace GetActivityLog { interface Request { spaceId: Util.UUID; /** Id of a page block or ... ? */ navigableBlockId: Util.UUID; limit: number; } interface Response { activityIds: Util.UUID[]; recordMap: { block: Map; space: Map; collection?: Map; notion_user: Map; activity: Map; follow: Map; slack_integration: Map; }; } } //# sourceMappingURL=getActivityLog.d.ts.map