import type { LocaleCode } from 'contentful'; import type { Asset, AssetRaw, ContentfulData, Entry, EntryField, EntryFieldRaw, EntryRaw, Locale, RuntimeContext } from '../types.js'; import Listr from 'listr'; export declare const getLocaleList: (code: string | undefined, locales?: Locale[]) => string[]; export declare const localizeField: (field: T, ...codes: LocaleCode[]) => EntryField; export declare const localizeEntry: (node: T, code: string, data: Partial) => R; export declare const localize: (context: RuntimeContext) => Promise>;