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