import type { ElementalContent } from "@/types/elemental.types"; /** * Apply locale translations to content for preview rendering. * Replaces source-locale fields (content, elements, title, href) with * the values stored under `node.locales[localeCode]`. */ export declare function applyLocaleToContent(content: ElementalContent | null | undefined, localeCode: string): ElementalContent | null;