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