import type { TagEntity } from './TagEntity';
import type { WorkflowEntity } from './WorkflowEntity';
export declare class WorkflowTagMapping {
    workflowId: string;
    workflows: WorkflowEntity[];
    tagId: string;
    tags: TagEntity[];
}
