/**
 * @author WMXPY
 * @namespace Error
 * @description Feature Not Supported
 */
import { IMBRICATE_DATABASE_FEATURE } from "../../database/feature";
import { ImbricateDatabaseError } from "./database-error";
export declare class ImbricateDatabaseFeatureNotSupportedError extends ImbricateDatabaseError {
    static withFeature(feature: IMBRICATE_DATABASE_FEATURE): ImbricateDatabaseFeatureNotSupportedError;
    static readonly TYPE: string;
    protected constructor(message: string, reason?: any);
}
