export default ConfigurationsAPI; declare namespace ConfigurationsAPI { export { getList }; export { get }; export { add }; export { update }; export { deleteItem as delete }; export { getLookup }; export { getObjectsList }; } declare function getList(params: any): Promise<{ items: any; next: any; }>; declare function get({ itemId: id }: { itemId: any; }): Promise; declare function add({ itemInstance }: { itemInstance: any; }): Promise; declare function update({ itemInstance, itemId: id }: { itemInstance: any; itemId: any; }): Promise; declare function deleteItem({ id }: { id: any; }): Promise; declare function getLookup(params: any): Promise<{ items: any; next: any; }>; declare function getObjectsList(params: any): Promise<{ items: any; next: any; }>;