/** * Returns true if the given specifier is a workspace package. * * Workspace packages are declared with the `workspace:` protocol and are * typically source-only, requiring bundling rather than externalization. */ export declare function isWorkspacePackageImport(specifier: string, rootDir: string): boolean; export declare function isDeclaredAppPackageImport(specifier: string, rootDir: string): boolean; export declare function normalizeNodeRuntimeBuildOutputFile(filePath: string, rootDir: string): void; export declare function normalizeNodeRuntimeBuildOutputs(outputPaths: string[], rootDir: string): void;