import { Id } from '../memi'; export interface QueryCondition { creatorId?: Id; tenantId?: Id; date?: string; from?: string; to?: string; } /** 是否为隐私模式 */ export declare function isSecretMode(): boolean; /** 生成可隐藏的数值 */ export declare const getSecretableNumber: (num: number) => number; /** 生成可隐藏的字符串 */ export declare const getSecretableString: (str: string | number) => string; export declare const getPriceByMathRound: (value: number, r?: number) => number; export declare const disabledPassedDate: (current: any) => boolean; export declare function encodeModelThumbnailUrl(url: string, width?: number): string; /** 确保是 HTTPS */ export declare const ensureHttps: (url: string) => string; /** * 字符串数组去重 * @param list * @returns */ export declare function unrepeateArrayStr(list: string[]): string[];