import type { RequestOptions } from '../types/common.js'; import type { TaxExemption, TaxExemptionCreateParams, TaxExemptionListParams, TaxExemptionListResult, TaxExemptionDeleteParams } from '../types/taxExemptions.js'; import { BaseResource } from './BaseResource.js'; export declare class TaxExemptions extends BaseResource { /** * Bulk-create tax exemptions for a store. * * Customers whose email matches an exemption are excluded from tax * calculations at checkout. */ create(params: TaxExemptionCreateParams, opts?: RequestOptions): Promise; /** * List tax exemptions for a store with pagination. */ list(params: TaxExemptionListParams, opts?: RequestOptions): Promise; /** * Delete one or more tax exemptions by ID. */ del(params: TaxExemptionDeleteParams, opts?: RequestOptions): Promise<{ success: boolean; }>; } //# sourceMappingURL=TaxExemptions.d.ts.map