import { type AxiosRequestConfig, type AxiosResponse } from 'axios';
import { type QueryLanguage } from '../../types/common.type';
import { type CustomersAndDiscounts } from '../../types/customersAndDiscounts.type';
export declare function getCustomersAndDiscounts(language?: QueryLanguage, axiosConfig?: AxiosRequestConfig<any>): Promise<AxiosResponse<CustomersAndDiscounts>>;
