import { AxiosInstance } from 'axios';
export declare class CustomerService {
    private readonly quickbooksApi;
    constructor(quickbooksApi: AxiosInstance);
    getCustomer(customerId: string): Promise<any>;
}
