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