import { ApiParams } from "../api"; export interface PostFileMethodOptions { isJson: boolean; accept: string; params: { [key: string]: string | number | boolean | Date | undefined; }; isAuthenticated: boolean; requestCredentials: RequestCredentials; } declare function postFileMethod(apiParams: ApiParams): (path: string, body: any | undefined, headers: any | undefined, file: { buffer: Buffer; bufferName: string; }, postFileOptions?: Partial) => Promise; export { postFileMethod };