export type DevTransformModuleKind = 'script' | 'stylesheet'; /** * Classifies a dev-transform source path for materialization. */ export declare function resolveDevTransformModuleKind(sourcePath: string): DevTransformModuleKind; /** * Emits browser ESM for a stylesheet import (`import styles from './x.css'`). * * @remarks * Parallels the server-side CSS shim: CSS stays in the module graph as a string * export while real stylesheet delivery uses `dependencies.stylesheets`. */ export declare function materializeDevTransformStylesheet(cssContent: string): string;