import { ScriptHandler } from '../Script.js';
export declare class ScriptSubroutine {
    name: string;
    command: ScriptHandler;
    invokeType: 'goto' | 'gosub';
    constructor(name: string, command: ScriptHandler, invokeType?: 'goto' | 'gosub');
    toString(): string;
    invoke(): string;
}
