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