interface SourceLocation { s: number; e: number; } export declare class CodeFrameError extends Error { location: SourceLocation; constructor(msg: string, location: SourceLocation); } export {};