import type * as StackbitTypes from '@stackbit/types'; import type * as HygraphTypes from './gql-types/gql-management-types.js'; export type SchemaContext = { assetModelId: string | null; maxPaginationSize: number; }; export type ModelWithContext = StackbitTypes.Model; export type ModelContext = { internalId: string; pluralId: string; isLocalized: boolean; fieldInfoMap: FieldInfoMap; }; export type FieldInfoMap = Record; export type FieldInfo = { type: string; hygraphType: string; isMultiModel: boolean; }; export declare function convertModels({ models, enumerations, components, logger }: { models: HygraphTypes.Model[]; enumerations: HygraphTypes.Enumeration[]; components: HygraphTypes.Component[]; logger: StackbitTypes.Logger; }): ModelWithContext[]; //# sourceMappingURL=hygraph-schema-converter.d.ts.map