export declare const i18nReg: RegExp; export declare const i18nMathIdReg: RegExp; /** * 移除表达式符号 * @param value */ export declare const clearExpressionSymbol: (value: string) => string; /** * 是否已经绑定国际化的值 * @param value */ export declare const hasBindI18nValue: (value: string) => boolean; /** * 获取绑定国际化的id标识 * @param value * @returns */ export declare const getI18nLangId: (value: string) => string | undefined; export declare const getI18nExpression: (id: string) => string; /** * 获取绑定类型 * "basic" | "expression" | "i18n" */ export declare const getBindInfo: (opts: { value: string; enableI18n: boolean; istodoBind: boolean; }) => "basic" | "i18n" | "expression"; declare const _default: { getBindInfo: (opts: { value: string; enableI18n: boolean; istodoBind: boolean; }) => "basic" | "i18n" | "expression"; getI18nExpression: (id: string) => string; getI18nLangId: (value: string) => string | undefined; hasBindI18nValue: (value: string) => boolean; clearExpressionSymbol: (value: string) => string; i18nMathIdReg: RegExp; i18nReg: RegExp; }; export default _default;