export interface Threshold {
    amount: number;
    approvers: string[];
  }

export interface ApprovalSetting {
    id: string;
    projectName: string;
    requireApproval: boolean;
    approvalHierarchy: string;
    customApprovers?: string[];
    enableThresholds: boolean;
    thresholds: Threshold[];
    autoApprovalEnabled: boolean;
    autoApprovalDays?: number;
    status: string;
  }