/** * @module * Testing Helper for Hono. */ import type { Client, ClientRequestOptions } from '../../client/types'; import type { ExecutionContext } from '../../context'; import type { Hono } from '../../hono'; import type { Schema } from '../../types'; import type { UnionToIntersection } from '../../utils/types'; type ExtractEnv = T extends Hono ? E : never; export declare const testClient: >(app: T, Env?: ExtractEnv["Bindings"] | {}, executionCtx?: ExecutionContext, options?: Omit) => UnionToIntersection>; export {};