import { Credentials } from "./credentials"; export type Workflow = { id: string; name: string; folderId: number; isEnabled: boolean; protected: boolean; deployedBy: string; lastDeployedAt: string; }; type WorkflowFolder = { id: number; name: string; systemFolder: boolean; parentFolderId: number; createdAt: string; updatedAt: string; folderType: string; accessLevel: string; }; export declare function getWorkflowsAndFolders(credentials: Credentials): Promise<{ workflows?: Array; folders?: Array; }>; export declare function deleteWorkflow(workflowName: string, credentials: Credentials, confirmDeletion: boolean): Promise; export declare function generateCRUDWorkflow(tableName: string, credentials: Credentials): Promise; export {};