/** * Returns the functions necessary to translate a link component * * @private */ export function getTranslationFunctions(): (((value: unknown, lang_value: string | undefined) => unknown) | ((attrs: Record, attribute_translations: { attribute_name: string; lang_attribute_name?: string; }[]) => Record))[]; export function getParaglideContext(): ParaglideContext | undefined; export function setParaglideContext(context: ParaglideContext): void; export type ParaglideContext = { translateHref: (href: string, hreflang?: T) => string; }; //# sourceMappingURL=index.d.ts.map