export default SkillsAPI; declare namespace SkillsAPI { export { getSkillsList as getList }; export { getSkill as get }; export { addSkill as add }; export { updateSkill as update }; export { deleteSkill as delete }; export { getSkillsLookup as getLookup }; } declare function getSkillsList(params: any): Promise<{ items: any; next: any; }>; declare function getSkill({ itemId: id }: { itemId: any; }): Promise; declare function addSkill({ itemInstance }: { itemInstance: any; }): Promise; declare function updateSkill({ itemInstance, itemId: id }: { itemInstance: any; itemId: any; }): Promise; declare function deleteSkill({ id }: { id: any; }): Promise; declare function getSkillsLookup(params: any): Promise<{ items: any; next: any; }>;