/** * Taxes API - Auto-generated typed wrapper. * DO NOT EDIT - Regenerate with: bun run generate * @generated */ export declare const taxes: { /** @see createTax */ readonly create: (createTaxBody: import("..").CreateTaxBody, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see getTaxes */ readonly list: (options?: (Omit & { order_by?: string | string[]; } & import("./types").SDKMethodOptions) | undefined) => Promise; /** @see updateTax */ readonly update: (id: string, updateTaxBody: import("..").UpdateTaxBody, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see replaceTax */ readonly replaceTax: (id: string, replaceTaxBody: import("..").ReplaceTaxBody, args_2?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see deleteTax */ readonly delete: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see restoreTax */ readonly restoreTax: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; /** @see permanentDeleteTax */ readonly permanentDeleteTax: (id: string, args_1?: import("./types").SDKMethodOptions | undefined) => Promise; }; export type TaxesApi = typeof taxes; //# sourceMappingURL=taxes.d.ts.map