export interface TaskApprovalPayload {
  documentIds: string[];
  status: "VERIFIED" | "REJECTED";
  remarks?: string;
}
