/** * Getting Bun Server Object for Bun adapters * @module */ import type { Context } from '../../context'; /** * Get Bun Server Object from Context * @template T - The type of Bun Server * @param c Context * @returns Bun Server */ export declare const getBunServer: (c: Context) => T | undefined;