export declare class WorkflowStageDto {
    stageId: string;
    stageKey: string;
    stageName: string;
    stageOrder: number;
    stageCategory: string;
    description: string;
    prerequisiteRulesConfig?: any;
    executionRulesConfig?: any;
    actionButtons?: any;
    completionActionsConfig?: any;
}
export declare class WorkflowConfigurationResponseDto {
    workflowId: number;
    workflowKey: string;
    workflowName: string;
    programType: string;
    workflowVersion: string;
    lifecycleStatus: string;
    description: string;
    lastUpdated: string;
    registrationRules: any;
    initialStage: any;
    stages: WorkflowStageDto[];
    independentActions: any;
}
