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