import { OT, S } from '@contentlayer/utils/effect'; import type { PageObjectResponse } from '@notionhq/client/build/src/api-endpoints'; import type { DatabaseTypeDef } from '../schema/types/database.js'; import { UnknownNotionError } from './errors.js'; export type FetchDatabasePagesArgs = { databaseTypeDef: DatabaseTypeDef; }; export declare const fetchDatabasePages: ({ databaseTypeDef }: FetchDatabasePagesArgs) => S.Stream & OT.HasTracer, UnknownNotionError, PageObjectResponse[]>; //# sourceMappingURL=fetchDatabasePages.d.ts.map