import { AttributeSelect } from '@zgfe/business-lib'; import { bizAttributeSelectorValueProp } from '../../types'; import { EventGroup, UserProp, EnvProp } from '@zgfe/business-lib/es/attributeSelector/types'; /** * 判断当前细分属性是否为”城市“ * @param name 属性名称 * @returns true标识为:是城市 */ export declare const judgeIsCity: (name: string | undefined) => boolean; /** * 判断当前细分属性,地图是否可选 * @param name 属性名称 * @returns true标识为:地图可选 */ export declare const judgeIsArea: (name: string | undefined) => boolean; /** * 获取当前属性的全部数据 * @param param 属性的部分数据 * @returns 属性的全部数据 */ export declare const getValue: (param: bizAttributeSelectorValueProp, eventGroupList: EventGroup[] | undefined, eventEnvList: EnvProp[] | undefined, userPropList: UserProp[] | undefined) => AttributeSelect.Value | undefined; export declare function searchCondition(params: any): { operator: any; eventId: any; eventName: any; condition: any; }; export declare function searchDataParams(params: any): { time: any; platform: any; userGroup: any; start: { operator: any; eventId: any; eventName: any; condition: any; }; end: { operator: any; eventId: any; eventName: any; condition: any; }; dimension: { sub: any; category: any; attrId: any; userAttr: any; eventAttr: any; event: any; } | null; associatedPreAttr: any; associatedNextAttr: any; analysisModel: any; analysisSubject: any; }; export declare function transformData(data: any[][]): string[];