import { TaxesStatic } from '../interfaces/TaxesStatic'; import BaseCrud from './BaseCrud'; export default class Taxes extends BaseCrud { constructor(accessToken: string); /** * Lists the taxes * * @param {TaxesStatic.TaxOptions} [options] * @returns {Promise} * @memberof Taxes */ list(options?: TaxesStatic.TaxOptions): Promise; /** * Search for taxes is not implemented in the API. * Use list() with parameters instead. */ search(): Promise; /** * Create a tax is not implemented in the API. */ create(): Promise; /** * Overwrite a tax is not implemented in the API. */ overwrite(): Promise; /** * Edit a tax is not implemented in the API. */ edit(): Promise; }