/**
 * @namespace Error
 * @description Database Error
 */
import { ImbricateError } from "../imbricate-error";
export declare class ImbricateDatabaseError extends ImbricateError {
    protected constructor(message: string, type: string, reason?: any);
}
