import { ApiHelpers } from "./ApiHelpers"; export declare class StylesheetApiHelper { api: ApiHelpers; constructor(api: ApiHelpers); get(path: string): Promise; doesExist(path: string): Promise; create(name: string, content: string, parentPath?: string): Promise; updateName(path: string, newName: string): Promise; updateContent(path: string, newContent: string): Promise; delete(path: string): Promise; getChildren(path: string): Promise; doesNameExist(name: 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; createDefaultStylesheet(name: string): Promise; encodeStylesheetPath(path: string): Promise; createStylesheetWithHeaderContent(name: string): Promise; }