export declare class CompilerError implements Error {
    name: string;
    message: string;
    constructor(detail: string);
}
