export declare const DECLARE_VAR_FUNCTION = "declareVar"; /** * COMPAT: Legacy support for declareStatic function. */ export declare const DECLARE_STATIC_FUNCTION = "declareStatic"; export declare const DERIVE_FUNCTION = "derive"; export declare const MSG_REGISTRATION_FUNCTION = "msg"; export declare const T_REGISTRATION_FUNCTION = "t"; export declare const T_GLOBAL_REGISTRATION_FUNCTION = "t"; export declare const INLINE_TRANSLATION_HOOK = "useGT"; export declare const INLINE_TRANSLATION_HOOK_ASYNC = "getGT"; export declare const INLINE_MESSAGE_HOOK = "useMessages"; export declare const INLINE_MESSAGE_HOOK_ASYNC = "getMessages"; export declare const TRANSLATION_COMPONENT = "T"; /** * COMPAT: Legacy support for Static component. */ export declare const STATIC_COMPONENT = "Static"; export declare const DERIVE_COMPONENT = "Derive"; export declare const BRANCH_COMPONENT = "Branch"; export declare const DEFAULT_GT_IMPORT_SOURCE = "gt-react/browser"; export declare const INTERNAL_TRANSLATION_COMPONENT = "GtInternalTranslateJsx"; export declare const INTERNAL_VAR_COMPONENT = "GtInternalVar"; export declare const VAR_COMPONENT = "Var"; export declare const DATETIME_COMPONENT = "DateTime"; export declare const RELATIVE_TIME_COMPONENT = "RelativeTime"; export declare const CURRENCY_COMPONENT = "Currency"; export declare const NUM_COMPONENT = "Num"; export declare const PLURAL_COMPONENT = "Plural"; export declare const GT_TRANSLATION_FUNCS: string[]; export declare const STRING_REGISTRATION_FUNCS: readonly ["msg", "t"]; export declare const GT_DERIVE_STRING_FUNCTIONS: string[]; export declare const VARIABLE_COMPONENTS: string[]; export declare const GT_ATTRIBUTES_WITH_SUGAR: readonly ["$id", "$context", "$maxChars", "$format"]; export declare const GT_ATTRIBUTES: readonly ["id", "context", "maxChars", "$id", "$context", "$maxChars", "$format"]; export declare const DATA_ATTR_PREFIX: "data-"; /** Branch control props — not translatable content. */ export declare const BRANCH_CONTROL_PROPS: Set; /** Plural control props — not translatable content. */ export declare const PLURAL_CONTROL_PROPS: Set; export declare const T_GLOBAL_REGISTRATION_FUNCTION_MARKER = "_gt_internal_t_global_registration_marker";