import type { KirbyQueryRequest } from 'kirby-types'; import type { NitroFetchOptions } from 'nitropack'; export interface ServerFetchOptions extends Pick, 'method' | 'headers' | 'query' | 'body'> { query?: Partial; path?: string; cache?: boolean; }