import { FrameworkError, FrameworkErrorOptions } from '../errors.js'; import { ValueOf } from '../internals/types.js'; import '../internals/helpers/guards.js'; /** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ interface Context { lines: string; excludedLines: string; finalState: Record; partialState: Record; } declare class LinePrefixParserError extends FrameworkError { isFatal: boolean; isRetryable: boolean; readonly context: Context; readonly reason: ValueOf; static Reason: { readonly NoDataReceived: "NoDataReceived"; readonly InvalidTransition: "InvalidTransition"; readonly NotStartNode: "NotStartNode"; readonly NotEndNode: "NotEndNode"; readonly AlreadyCompleted: "AlreadyCompleted"; readonly InvalidSchema: "InvalidSchema"; }; constructor(message: string, errors: Error[], options: FrameworkErrorOptions & { context: Context; reason: ValueOf; }); } export { LinePrefixParserError };