/** * @author WMXPY * @namespace Document * @description Action */ import { ImbricateFileSystemDocumentInstance } from "./definition"; export declare const putDocument: (basePath: string, databaseUniqueIdentifier: string, document: ImbricateFileSystemDocumentInstance) => Promise; export declare const getDocumentByUniqueIdentifier: (basePath: string, databaseUniqueIdentifier: string, documentUniqueIdentifier: string) => Promise; export declare const getDocumentList: (basePath: string, databaseUniqueIdentifier: string) => Promise; export declare const deleteDocument: (basePath: string, databaseUniqueIdentifier: string, documentUniqueIdentifier: string) => Promise;