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