/**
 * @author WMXPY
 * @namespace Static
 * @description Author Only
 */
import { IMBRICATE_STATIC_FEATURE } from "../feature";
import { IImbricateStatic } from "../interface";
import { ImbricateStaticGetContentOutcome } from "../outcome";
import { ImbricateStaticFullFeatureBase } from "./full-feature";
export declare abstract class ImbricateStaticAuthorOnlyBase extends ImbricateStaticFullFeatureBase implements IImbricateStatic {
    readonly supportedFeatures: IMBRICATE_STATIC_FEATURE[];
    getContentInBase64(): PromiseLike<ImbricateStaticGetContentOutcome<string>>;
}
