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