import type { AxiosInstance } from 'axios'; /** * Resolve a folder slug to its ID. Personal folders by default; pass a team * slug to resolve a team folder. Used by `artifact move` and `artifact bulk`. */ export declare function resolveFolderId(client: AxiosInstance, folderSlug: string, teamSlug?: string): Promise; export declare function folderCreate(slug: string, options: { team?: string; }): Promise; export declare function folderList(options: { team?: string; }): Promise; export declare function folderShow(slug: string, options: { team?: string; }): Promise; export declare function folderDelete(slug: string, options: { team?: string; deleteContents?: boolean; }): Promise; export declare function folderRename(oldSlug: string, newSlug: string, options: { team?: string; }): Promise; export declare function artifactMove(uuid: string, options: { folder?: string; team?: string; unfiled?: boolean; }): Promise;