import { HttpService } from "@nestjs/axios"; import { Observable } from "rxjs"; import { QuickBooksAuthService } from "../../auth/services/auth.service"; import { BaseService } from "../../common/base.service"; import { QuickBooksStore } from "../../store"; import { QuickBooksTaxCodes, QuickBooksTaxCodesQuery, QuickBooksTaxCodesQueryResponseModel, QuickBooksTaxCodesResponseModel } from ".."; export declare class QuickBooksTaxCodesService { private readonly authService; private readonly http; private readonly store; constructor(authService: QuickBooksAuthService, http: HttpService, store: QuickBooksStore); withDefaultCompany(): Promise; forCompany(realm: string): QuickBooksCompanyTaxCodesService; } export declare class QuickBooksCompanyTaxCodesService extends BaseService { constructor(realm: string, authService: QuickBooksAuthService, http: HttpService); readById(id: string): Observable; }