export default TeamsAPI; declare namespace TeamsAPI { export { getTeamsList as getList }; export { getTeam as get }; export { addTeam as add }; export { updateTeam as update }; export { deleteTeam as delete }; export { getTeamsLookup as getLookup }; } declare function getTeamsList(params: any): Promise<{ items: any; next: any; }>; declare function getTeam({ itemId: id }: { itemId: any; }): Promise; declare function addTeam({ itemInstance }: { itemInstance: any; }): Promise; declare function updateTeam({ itemInstance, itemId: id }: { itemInstance: any; itemId: any; }): Promise; declare function deleteTeam({ id }: { id: any; }): Promise; declare function getTeamsLookup(params: any): Promise<{ items: any; next: any; }>;