/**
 * @author WMXPY
 * @namespace Debug
 * @description Flow Controller
 */
export type MarkedDebugFlowControllerOptions = {
    readonly continueMethod: () => void;
    readonly terminateMethod: () => void;
    readonly nextStepMethod: () => void;
};
export declare class MarkedDebugFlowController {
    static fromOptions(options: MarkedDebugFlowControllerOptions): MarkedDebugFlowController;
    private readonly _continueMethod;
    private readonly _terminateMethod;
    private readonly _nextStepMethod;
    private constructor();
    continue(): void;
    terminate(): void;
    nextStep(): void;
}
