import type { WrappedFolder } from "../models/WrappedFolder"; import type { CancelablePromise } from "../core/CancelablePromise"; export declare class FolderService { /** * Retrieve an existing folder * Retrieve an existing folder. This will return the folder's information, including the title, description, all docs within it, and others. * @param id * @returns WrappedFolder Success, including the retrieved folder * @throws ApiError */ static getFolder(id: string): CancelablePromise; }