import { App as H3App, Router } from "h3"; import { createCall, createFetch as createLocalFetch } from "unenv/runtime/fetch/index"; import { Hookable } from "hookable"; export interface dittpApp { h3App: H3App; router: Router; hooks: Hookable; localCall: ReturnType; localFetch: ReturnType; } export declare const dittpApp: dittpApp; export declare const usedittpApp: () => dittpApp;