import { ComponentRegistry } from './registry'; export declare function buildRegistry(files: Record): ComponentRegistry; /** Convenience wrapper: compile and return just the code string. */ export declare function compileCode(sourceCode: string, fileName: string, registry?: ComponentRegistry): string; /** Compile in partial mode and return just the code string. */ export declare function compilePartialCode(sourceCode: string, fileName: string, registry?: ComponentRegistry): string; export declare function expectCompiles(result: string): void;