import { BuilderContent } from '@builder.io/sdk'; export declare const localizedType = "@builder.io/core:LocalizedValue"; export declare type TranslateableFields = { [key: string]: { instructions?: string; value: string | Record; }; }; export declare function getTranslateableFields(content: BuilderContent, sourceLocaleId: string, defaultInstructions: string): TranslateableFields; export declare function applyTranslation(content: BuilderContent, translation: TranslateableFields, locale: string, sourceLocaleId?: string): BuilderContent;