import type { BankExport } from '../../../../../entities/index.ts'; import type { FilterType, HttpClient, IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetBankExportsInput = { id: string; include?: IncludeType; filter?: FilterType; }; declare const getBankExports: (http: HttpClient) => { query: (input: GetBankExportsInput) => Promise>; }; export default getBankExports;