interface AppIds { identifier: string; name: string; url: string; } interface ResponseListInsightAppIds { isSuccessful: boolean; result?: { content: AppIds[]; pageSize?: number; toPage?: number; totalPages?: number; totalCount?: number; }; } export declare class InsightService { /** * 根据name查找appid * @param appNames * @returns ResponseListInsightAppIds OK * @throws ApiError */ static searchIdByName(appNames?: string): Promise>; } export {};