/**
 * @namespace Error_Origin
 * @description Feature Not Supported
 */
import { IMBRICATE_ORIGIN_FEATURE } from "../../origin/feature";
import { OriginError } from "./origin-error";
export declare class ImbricateOriginFeatureNotSupportedError extends OriginError {
    static withFeature(feature: IMBRICATE_ORIGIN_FEATURE): ImbricateOriginFeatureNotSupportedError;
    static readonly TYPE: string;
    protected constructor(message: string, reason?: any);
}
