import { type WorkflowMetadata, type WorkflowStep } from '../metadata/workflow.metadata'; import { type WorkflowRecord } from '../records'; import { BaseEntry, type EntryOwnerRef } from './base.entry'; export declare abstract class WorkflowEntry extends BaseEntry { owner: EntryOwnerRef; name: string; fullName: string; isDynamic(): boolean; isHidden(): boolean; getTags(): string[]; getLabels(): Record; getSteps(): WorkflowStep[]; getTrigger(): string; } //# sourceMappingURL=workflow.entry.d.ts.map