/** * The `corePikkuFetch` function is a utility for making HTTP requests with dynamic URI and data handling. * It can automatically replace URI parameters, append query strings for GET requests, and set the request body for POST, PATCH, or PUT requests. * * @param {string} uri - The endpoint URI for the request. URI parameters can be specified using `:param` syntax. * @param {any} data - The data to be included in the request, either as query parameters or as the request body. * @param {Omit} [options] - Optional configuration options for the fetch request, excluding the body. * @returns {Promise} - A promise that resolves to the response of the fetch request. */ export declare const corePikkuFetch: (uri: string, data: any, options?: Omit, fetchImpl?: typeof globalThis.fetch) => Promise;