/** * @license * @preserve * * Copyright 2026 KeeeX SAS * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies * of the Software, and to permit persons to whom the Software is furnished to do * so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ import * as axios from "axios"; import * as typeApifile from "../types/apifile.js"; import { type PaginationOutputType } from "../types/pagination.js"; import type * as typeMidapi from "../types/midapi.js"; /** Return the function used to filter the input of a JSON request */ export declare const getProcessInputFn: (definition: typeMidapi.JsonInProps) => typeMidapi.DataFilter; /** Return the function used to filter a JSON response */ export declare const getProcessOutputFn: (definition: typeMidapi.JsonOutProps) => typeMidapi.DataFilter; /** Return the function used to filter a paginated JSON response */ export declare const getPaginatedOutputFn: (definition: typeMidapi.DefPaginatedJsonInJsonOut) => typeMidapi.DataFilter, PaginationOutputType>; /** Return the file result for a binary response */ export declare const getBinOutput: (axiosResponse: axios.AxiosResponse) => typeApifile.ApiFile; export declare const getBinInput: (file: typeApifile.SendableFile) => { data: Uint8Array | Blob; headers: Record; }; export declare const getFullNoResponse: (axiosResponse: axios.AxiosResponse) => typeMidapi.FullNoResponse; export declare const getFullResponse: (axiosResponse: axios.AxiosResponse, data: OutputType) => typeMidapi.FullResponse;