import type { Config, RuntimeContext, TransformContext, AssetRaw, EntryRaw } from '../types.js'; import { ResolvedConfig } from '@jungvonmatt/contentful-config/dist/index.js'; export declare const readFixture: (file: any) => Promise; export declare const readFixtureSync: (file: any) => any; export declare const getContent: () => Promise<{ entries: EntryRaw[]; assets: AssetRaw[]; contentTypes: import("contentful").ContentType[]; locales: import("contentful").Locale[]; assetLink: { sys: { id: string; type: string; linkType: string; }; }; entryLink: { sys: { id: string; type: string; linkType: string; }; }; entry: EntryRaw; asset: AssetRaw; assetMap: Map; entryMap: Map; }>; export declare const getConfig: (fixture?: Partial) => ResolvedConfig; export declare const getRuntimeContext: (fixture?: Partial) => RuntimeContext; export declare const getTransformContext: (fixture?: Partial) => TransformContext;