import type { Voucher, VoucherPayload } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type ModifyVoucherInput = { voucherId: string; payload: VoucherPayload; }; declare const modifyVoucher: (http: HttpClient) => { query: (input: ModifyVoucherInput) => Promise>; }; export default modifyVoucher;