/** * 获取Dom的唯一标识等信息 */ type DomInfoPriority = Array<'selectorId' | 'teamixSpm' | 'teamixId'>; interface DomInfo { tagName: string; selector: string; className: string; count?: number; isLeaf?: boolean; fix?: any; level?: string; text?: string; upload?: boolean; } export declare const getDomInfo: (el: Element | null, priority?: DomInfoPriority) => DomInfo; export declare const isSpecialNode: (specialClassList: string[], className: string, uiPrefix: string[], proPrefix: string[]) => boolean; export declare const formatPrefixList: (prefixList: string[]) => string[]; export declare const isClassNameStartsWithPre: (className: string, pre: string) => boolean; export declare const isClassNameContains: (className: string, pre: string) => boolean; export {};