/** * @author WMXPY * @namespace Text * @description Manager */ import { IImbricateTextManager, ImbricateTextAuditOptions, ImbricateTextManagerCreateTextOutcome, ImbricateTextManagerFullFeatureBase, ImbricateTextManagerGetTextOutcome } from "@imbricate/core"; export declare class ImbricateFileSystemTextManager extends ImbricateTextManagerFullFeatureBase implements IImbricateTextManager { static create(basePath: string): ImbricateFileSystemTextManager; private readonly _basePath; private constructor(); getText(uniqueIdentifier: string): Promise; createText(content: string, _auditOptions?: ImbricateTextAuditOptions): Promise; }