import { AttributeSelect, EnvProp, EventGroup, UserProp } from '@zgfe/business-lib/es/attributeSelector/types'; import { bizAttributeSelectorValueProp } from '../types'; declare let util: { dayTime: number; type(obj: any): string; isObject(obj: any): boolean; isArray(obj: any): boolean; isString(obj: any): boolean; isNumber(obj: any): boolean; isDate(obj: any): boolean; isFunction(obj: any): boolean; isEqual(a?: {}, b?: {}): boolean; equal(a: any, b: any): boolean; random(min: number, max: number): number; guid(): string; mergeObject(defaults: { [x: string]: any; }, option: { [x: string]: any; }): { [x: string]: any; }; toThousands(num: number): string; toDoubleNumber(num: number): string; dateFormat(date?: any, formatter?: string): string; timeFormat(date: any, formatter: string | undefined, autoShort: any): string | undefined; strMiddleSplit(str: string, config?: { maxLength: number; beginLength: number; endLength: number; replaceStr: string; }): string; }; export declare const getValue: (param: bizAttributeSelectorValueProp, eventGroupList: EventGroup[] | undefined, eventEnvList: EnvProp[] | undefined, userPropList: UserProp[] | undefined) => AttributeSelect.Value | undefined; export declare function tipContent(isRealTime: boolean): "当前图标数据每天更新一次" | "当前图表数据实时更新,约每分钟更新一次"; export default util;