import type { PreparedApplicationHost } from "#internal/nitro/host/types.js";
/**
 * Compiles one authored app and stages the package-owned artifacts needed by
 * the Nitro host.
 */
export declare function prepareApplicationHost(startPath: string, options?: {
    readonly dev?: boolean;
}): Promise<PreparedApplicationHost>;
