import type { ExceptionOptions } from './types.js';
export declare class EdgeError extends Error {
    message: string;
    code: string;
    line: number;
    col: number;
    filename: string;
    constructor(message: string, code: string, options: ExceptionOptions);
}
