export interface CompileResult { code: string; css: string | null; map: null; } /** * Compile a .vx single-file component into a JavaScript module string. * * @param source - raw .vx file contents * @param filePath - absolute path to the file (used for scope ID generation) */ export declare function compile(source: string, filePath: string): CompileResult; //# sourceMappingURL=compiler.d.ts.map