export type ErrorType = "invalid-retry" | "unknown-field";
export declare class ParseError extends Error {
    type: ErrorType;
    field?: string | undefined;
    value?: string | undefined;
    line?: string | undefined;
    constructor(message: string, options: {
        type: ErrorType;
        field?: string;
        value?: string;
        line?: string;
    });
}
