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