import { ApiHelpers } from "./ApiHelpers"; export declare class PartialViewApiHelper { api: ApiHelpers; constructor(api: ApiHelpers); get(path: string): Promise; doesExist(path: string): Promise; create(name: string, content: string, parentPath?: string): Promise; updateContent(path: string, content: string): Promise; updateName(path: string, name: string): Promise; delete(path: string): Promise; doesNameExist(name: string): Promise; getChildren(path: string): Promise; getAllAtRoot(): Promise; getByName(name: string): Promise; ensureNameNotExists(name: string): Promise; private recurseChildren; private recurseDeleteChildren; getFolder(path: string): Promise; doesFolderExist(path: string): Promise; createFolder(name: string, parentPath?: string): Promise; deleteFolder(path: string): Promise; createDefaultPartialView(name: string): Promise; }