import { ApiParams } from "../api"; export interface ConnectMethodOptions { isJson: boolean; isJsonBody: boolean; contentType: string; accept: string; params: { [key: string]: string | number | boolean | Date | undefined; }; isAuthenticated: boolean; skipContentType: boolean; requestCredentials: RequestCredentials; } declare function connectMethod(apiParams: ApiParams): (path: string, options?: Partial) => Promise; export { connectMethod };