import type * as StackbitTypes from '@stackbit/types'; import type { HygraphEntry } from './hygraph-api-client.js'; import type { ModelWithContext } from './hygraph-schema-converter.js'; export type DocumentWithContext = StackbitTypes.Document; export type DocumentContext = { nestedModelsInfo: NestedModelsInfo; }; export type NestedModelsInfo = Record; export declare const SystemDocumentFields: readonly ["__typename", "id", "createdAt", "createdBy", "updatedAt", "updatedBy", "publishedAt", "publishedBy", "stage", "documentInStages", "scheduledIn", "history"]; export declare function convertDocuments({ hygraphEntries, getModelByName, baseManageUrl, logger }: { hygraphEntries: HygraphEntry[]; getModelByName: (modelName: string) => ModelWithContext | undefined; baseManageUrl: string; logger: StackbitTypes.Logger; }): DocumentWithContext[]; export declare function convertDocument({ hygraphEntry, getModelByName, baseManageUrl, logger }: { hygraphEntry: HygraphEntry; getModelByName: (modelName: string) => ModelWithContext | undefined; baseManageUrl: string; logger: StackbitTypes.Logger; }): DocumentWithContext | undefined; //# sourceMappingURL=hygraph-entries-converter.d.ts.map