import { PageView } from '@operato/shell'; /** * Workflow List Page * * Displays all labeling workflows with CRUD operations */ export declare class LabelingWorkflowListPage extends PageView { static styles: import("lit").CSSResult[]; workflows: any[]; loading: boolean; filterStatus: string; filterProjectId: string; firstUpdated(): Promise; loadWorkflows(): Promise; createWorkflow(): void; editWorkflow(workflowId: string, event: Event): void; executeWorkflow(workflowId: string, event: Event): Promise; pauseWorkflow(workflowId: string, event: Event): Promise; resumeWorkflow(workflowId: string, event: Event): Promise; deleteWorkflow(workflowId: string, event: Event): Promise; getStatusClass(status: string): "status-active" | "status-draft" | "status-paused" | "status-completed" | "status-failed" | ""; get filteredWorkflows(): any[]; render(): import("lit-html").TemplateResult<1>; }