import type { ScriptSegment, ScriptCommand } from './types.js'; type CompileResult = { commands: ScriptCommand[]; stopPointIndex: Map; }; declare const compile: (segments: ScriptSegment[], meta: { scriptName: string; }) => CompileResult; export default compile;