import { Action, WithParsedExtension } from '@foscia/core'; import { HttpRequestConfig } from '../../../types'; /** * HTTP PUT method shortcut for the {@link makeRequest} function. * * @param pathOrBaseURL * @param body * @param config * * @category Enhancers */ declare const makePut: (pathOrBaseURL: string, body?: HttpRequestConfig["body"], config?: Omit) => (action: Action) => Promise & { httpRequestConfig: HttpRequestConfig; }, {}>>; declare const _default: WithParsedExtension(this: Action, pathOrBaseURL: string, body?: HttpRequestConfig["body"], config?: Omit): Action; }>; export default _default;