import type { AstroIntegrationLogger } from 'astro'; import type { DynamicRoute } from '../types.js'; export interface DevServerRequestResult { html: string; params: Record; } export declare function serveDynamicRoute(pathname: string, host: string, protocol: string, dynamicRoutes: DynamicRoute[], logger?: AstroIntegrationLogger): Promise;