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