import { Lexer } from './compiler/lexer/Lexer.js'; import { Parser } from './compiler/parser/Parser.js'; import { LuaEmitter } from './compiler/codegen/LuaEmitter.js'; import { SemanticAnalyzer } from './compiler/semantics/SemanticAnalyzer.js'; export declare function compile(source: string): string; export { Lexer, Parser, LuaEmitter, SemanticAnalyzer };