import { BaseError } from './base';
export declare class InternalError extends BaseError {
    constructor(message: string);
    constructor(message: string, info: object);
    constructor(message: string, internalError: Error);
    constructor(message: string, info: object, internalError: Error);
}
