export declare function addCustomer(data: any): Promise; export declare function insertCustomer(_id: string, data: any): Promise; export declare function addCustomers(list: any[]): Promise; export declare function updateCustomer(_id: string, data: any): Promise; export declare function deleteCustomer(id: string): Promise; export declare function hardDeleteProduct(_id: string): Promise; export declare function getAllCustomers(): Promise; export declare function getLiveAllCustomers(): import("rxjs").Observable; export declare function getCustomerById(_id: string): Promise;