import { TEnv } from '@antscorp/antsomi-ui/es/types/config'; import { Auth } from '../../types'; import { AxiosRequestConfig } from 'axios'; type Entry = { insightPropertyId: number; insightPropertyName: string; insightPropertyType: string; }; type ResponseType = { data: { entries: Entry[]; }; }; type Params = { env: TEnv; auth: Auth; config?: AxiosRequestConfig; sort?: string; sd?: string; }; export declare const getListDataSource: (params: Params) => Promise<{ insightPropertyType: string; insightPropertyId: number; insightPropertyName: string; }[]>; export {};