import { Action, WithParsedExtension } from '@foscia/core'; import { Dictionary } from '@foscia/shared'; /** * Set the given query param on the request. * The new params will be merged with the previous ones. * * @param key * @param value * * @category Enhancers */ declare const param: (key: string | Dictionary, value?: unknown) => (action: Action) => Promise & { httpRequestConfig: import("../../..").HttpRequestConfig; }, {}>>; declare const _default: WithParsedExtension(this: Action, key: string | Dictionary, value?: unknown): Action; }>; export default _default;