import { type RuntimeCompiledArtifactsSource } from "#runtime/compiled-artifacts-source.js"; /** * Configuration values needed to resolve the compiled-artifact source for * package-owned Nitro routes. Passed explicitly from virtual handlers * rather than read from a global runtime configuration store. */ export interface NitroArtifactsConfig { readonly appRoot?: string; readonly dev?: boolean; readonly devRuntimeArtifactsPointerPath?: string; readonly moduleMapLoaderPath?: string; } /** * Resolves the compiled-artifact source available to package-owned Nitro * routes. */ export declare function resolveNitroCompiledArtifactsSource(config: NitroArtifactsConfig): RuntimeCompiledArtifactsSource;