declare class ICoreWorkflowApproverRules {
    _id?: string;
    wfar_workflow_step_id_wfstp?: string;
    wfar_approval_group_id?: string;
    wfar_group_approval_type_id_sygms?: string;
    wfar_rule_type_id_sygms?: string;
    wfar_rule_value?: string;
    wfar_rule_operator_id_sygms?: string;
    wfar_combined_filters?: Record<string, any>[];
    wfar_priority?: number;
    wfar_condition?: string;
    wfar_is_optional?: boolean;
    wfar_min_approvals?: number;
    wfar_valid_from_date?: Date;
    wfar_valid_to_date?: Date;
    wfar_isactive?: boolean;
}
export { ICoreWorkflowApproverRules };
