import { Credentials } from "./credentials"; export type App = { uuid: string; name: string; folderId: number; id: string; protected: boolean; updatedAt: string; createdAt: string; isGlobalWidget: boolean; }; type Folder = { id: number; parentFolderId: number; name: string; systemFolder: boolean; createdAt: string; updatedAt: string; folderType: string; accessLevel: string; }; export declare function createApp(appName: string, credentials: Credentials): Promise; export declare function createAppForTable(appName: string, tableName: string, columnName: string, //The column to use for search bar. credentials: Credentials): Promise; export declare function exportApp(appName: string, credentials: Credentials): Promise; export declare function deleteApp(appName: string, credentials: Credentials, confirmDeletion: boolean): Promise; export declare function getAppsAndFolders(credentials: Credentials): Promise<{ apps?: Array; folders?: Array; }>; export declare function collectAppName(): Promise; export {};