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