/**
 * @author WMXPY
 * @namespace Text
 * @description Author Only
 */
import { IMBRICATE_TEXT_FEATURE } from "../feature";
import { IImbricateText } from "../interface";
import { ImbricateTextGetContentOutcome } from "../outcome";
import { ImbricateTextFullFeatureBase } from "./full-feature";
export declare abstract class ImbricateTextAuthorOnlyBase extends ImbricateTextFullFeatureBase implements IImbricateText {
    readonly supportedFeatures: IMBRICATE_TEXT_FEATURE[];
    getContent(): PromiseLike<ImbricateTextGetContentOutcome>;
}
