/** * \\(?:u\{[a-fA-F0-9]+}) 匹配形如 \u{0020} 的 Unicode 转义字符。 * \\x[a-fA-F0-9]{2} 匹配形如 \x0A 的十六进制转义字符。 * [nrtf'"] 匹配常见的转义字符:\n(换行符)、\r(回车符)、\t(制表符)、\f(换页符)、\'(单引号)和 \"(双引号)。 */ export declare const UNICODE_REG: RegExp; export declare const STICKY_FLAG: string; export declare const GLOBAL_FLAG: string; export declare const VERTICAL_LINE: string; export declare const UNICODE_FLAG: string; export declare const STATE_GROUP_START_INDEX: number; export declare const INULA_STATICS: { childContextTypes: boolean; contextType: boolean; contextTypes: boolean; defaultProps: boolean; displayName: boolean; getDefaultProps: boolean; getDerivedStateFromError: boolean; getDerivedStateFromProps: boolean; mixins: boolean; propTypes: boolean; type: boolean; }; export declare const NATIVE_STATICS: { name: boolean; length: boolean; prototype: boolean; caller: boolean; callee: boolean; arguments: boolean; arity: boolean; }; export declare const INULA_FORWARD_REF_STATICS: { vtype: boolean; render: boolean; defaultProps: boolean; key: boolean; type: boolean; }; export declare const REACT_FORWARD_REF_STATICS: { $$typeof: boolean; render: boolean; defaultProps: boolean; displayName: boolean; propTypes: boolean; }; export declare const FORWARD_REF_STATICS: { $$typeof: boolean; render: boolean; defaultProps: boolean; displayName: boolean; propTypes: boolean; vtype: boolean; key: boolean; type: boolean; }; export declare const INULA_MEMO_STATICS: { vtype: boolean; compare: boolean; defaultProps: boolean; type: boolean; }; export declare const DEFAULT_PLURAL_KEYS: string[]; export declare const voidElementTags: string[];