export interface ParseError { message: string; position: number; suggestion?: string; context: string; } export type ParseWithErrorsResult = { success: true; value: T; } | { success: false; errors: ParseError[]; }; export declare function suggestKeyword(word: string): string | undefined; export declare function buildParseErrors(input: string, failureIndex: number, rawMessages: string[]): ParseError[];