import type { Nitro } from "nitro/types";
import type { NitroBuildSurface, PreparedApplicationHost } from "#internal/nitro/host/types.js";
/**
 * Wires eve's package-owned app, channel, workflow inspection, and Workflow
 * SDK endpoints into one Nitro host instance.
 */
export declare function configureNitroRoutes(nitro: Nitro, preparedHost: PreparedApplicationHost, input: {
    surface: NitroBuildSurface;
}): Promise<void>;
