import { FieldJson, FieldsetJson, FormJson } from '../types/index'; export declare const TRANSLATION_TOKEN = "##"; export declare const TRANSLATION_ID = "afs:translationIds"; export declare const CUSTOM_PROPS_KEY = "properties"; declare type formElementJson = FieldJson | FieldsetJson | FormJson | any; export declare const invalidateTranslation: (input: formElementJson, updates: any) => void; export declare const addTranslationId: (input: formElementJson, additionalTranslationProps?: string[]) => formElementJson; export declare const getOrElse: (input: any, key: string | string[], defaultValue?: any) => any; export declare const createTranslationObj: (input: formElementJson, additionalTranslationProps?: string[]) => any; export declare const createTranslationObject: (input: formElementJson, additionalTranslationProps?: string[], bcp47LangTags?: string[]) => any; export {};