export default BucketsAPI; declare namespace BucketsAPI { export { getBucketsList as getList }; export { getBucket as get }; export { addBucket as add }; export { updateBucket as update }; export { deleteBucket as delete }; export { getBucketsLookup as getLookup }; } declare function getBucketsList(params: any): Promise<{ items: any; next: any; }>; declare function getBucket({ itemId: id }: { itemId: any; }): Promise; declare function addBucket({ itemInstance }: { itemInstance: any; }): Promise; declare function updateBucket({ itemInstance, itemId: id }: { itemInstance: any; itemId: any; }): Promise; declare function deleteBucket({ id }: { id: any; }): Promise; declare function getBucketsLookup(params: any): Promise<{ items: any; next: any; }>;