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