export default ObjectsApi; declare namespace ObjectsApi { export { getObjectList as getList }; export { getObjectLookup as getLookup }; } declare function getObjectList(params: any): Promise<{ items: any; next: any; }>; declare function getObjectLookup(params: any): Promise<{ items: any; next: any; }>;