/**
 * A generimc core error
 */
export declare abstract class EngineError extends Error {
    constructor(message?: string);
}
export declare class EngineModeError extends EngineError {
    constructor(error: string);
}
export declare class EngineCannotSwitchModeError extends EngineModeError {
    constructor();
}
